summaryrefslogtreecommitdiffstats
path: root/pacman-c++/client.h
diff options
context:
space:
mode:
authortotycro <totycro@unknown-horizons.org>2011-04-04 20:35:49 +0200
committertotycro <totycro@unknown-horizons.org>2011-04-04 20:35:49 +0200
commita5ea024b0119a4b0fea858ae9115d744a786d3af (patch)
tree99408cf77bad1596c9e2fcdf035a2294eff64cdd /pacman-c++/client.h
parent0693d00da48d795c7ccb658e8b69fe17f4427337 (diff)
downloadfoop-a5ea024b0119a4b0fea858ae9115d744a786d3af.tar.gz
foop-a5ea024b0119a4b0fea858ae9115d744a786d3af.tar.bz2
foop-a5ea024b0119a4b0fea858ae9115d744a786d3af.zip
change project file:
use: qmake -config client or qmake -config main Added basic client gui infrastructure
Diffstat (limited to 'pacman-c++/client.h')
-rw-r--r--pacman-c++/client.h18
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
8class Client
9 : public QMainWindow {
10 Q_OBJECT
11public:
12 Client();
13
14private:
15 MainWidget *mainWidget;
16};
17
18#endif // CLIENT_H \ No newline at end of file