diff options
Diffstat (limited to '')
-rw-r--r-- | src/gatscon/filewidget.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/gatscon/filewidget.h b/src/gatscon/filewidget.h new file mode 100644 index 0000000..ac46685 --- /dev/null +++ b/src/gatscon/filewidget.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef FILE_WIDGET_H | ||
2 | #define FILE_WIDGET_H | ||
3 | |||
4 | #include "ui_filewidget.h" | ||
5 | |||
6 | namespace Gats | ||
7 | { | ||
8 | class Object; | ||
9 | }; | ||
10 | |||
11 | class FileWidget : public QWidget, protected Ui::FileWidget | ||
12 | { | ||
13 | Q_OBJECT; | ||
14 | public: | ||
15 | FileWidget( QWidget *pParent=NULL ); | ||
16 | FileWidget( QWidget *pParent, QString sFile ); | ||
17 | virtual ~FileWidget(); | ||
18 | |||
19 | private: | ||
20 | }; | ||
21 | |||
22 | #endif | ||