diff options
Diffstat (limited to 'pacman-c++/client.h')
| -rw-r--r-- | pacman-c++/client.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pacman-c++/client.h b/pacman-c++/client.h new file mode 100644 index 0000000..2816ec2 --- /dev/null +++ b/pacman-c++/client.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | #ifndef CLIENT_H | ||
| 2 | #define CLIENT_H | ||
| 3 | |||
| 4 | #include <QtGui> | ||
| 5 | |||
| 6 | #include "mainwidget.h" | ||
| 7 | |||
| 8 | class Client | ||
| 9 | : public QMainWindow { | ||
| 10 | Q_OBJECT | ||
| 11 | public: | ||
| 12 | Client(); | ||
| 13 | |||
| 14 | private: | ||
| 15 | MainWidget *mainWidget; | ||
| 16 | }; | ||
| 17 | |||
| 18 | #endif // CLIENT_H \ No newline at end of file | ||
