1:c9b22c06307c | 2:1d544788a8b3 |
---|---|
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 |