blob: ae8f1208d58382da11bcc4747171a0f41d26bf04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* May be used, copied and modified wihtout any limitation
*/
#ifndef OSPlitter_EXAMPLE_H
#define OSPlitter_EXAMPLE_H
#include <qvbox.h>
#include <opie/ofileselector.h>
class OSplitterExample : public QWidget {
Q_OBJECT
public:
static QString appName() { return QString::fromLatin1("osplitter_example"); }
OSplitterExample( QWidget *parent, const char* name, WFlags fl );
};
#endif
|