Wed, 17 Jul 2013 00:31:04 +0300
argh
2 | 1 | #ifndef CONFIG_H |
2 | #define CONFIG_H | |
3 | ||
4 | #include <QDialog> | |
5 | ||
6 | class Ui_ConfigBox; | |
7 | ||
8 | class ConfigBox : public QDialog { | |
9 | public: | |
10 | explicit ConfigBox( QWidget* parent = 0, Qt::WindowFlags f = 0 ); | |
11 | virtual ~ConfigBox(); | |
12 | ||
13 | private: | |
14 | Ui_ConfigBox* ui; | |
15 | }; | |
16 | ||
17 | #endif // CONFIG_H |