diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | c90c389a8a8d9d8661e9772ec4144c5cf2039f23 (patch) | |
tree | 6d8391395bce9eaea4ad78958617edb20c6a7573 /klickety/main.h | |
download | tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.tar.gz tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'klickety/main.h')
-rw-r--r-- | klickety/main.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/klickety/main.h b/klickety/main.h new file mode 100644 index 00000000..e5b335f8 --- /dev/null +++ b/klickety/main.h @@ -0,0 +1,29 @@ +#ifndef KL_MAIN_H +#define KL_MAIN_H + +#include "base/main.h" +#include "base/factory.h" +#include "board.h" +#include "field.h" + + +class KLFactory : public BaseFactory +{ + public: + KLFactory(); + + protected: + virtual BaseBoard *createBoard(bool, QWidget *parent) + { return new KLBoard(parent); } + virtual BaseInterface *createInterface(QWidget *parent) + { return new Field(parent); } +}; + +class KLMainWindow : public BaseMainWindow +{ + Q_OBJECT + public: + KLMainWindow(); +}; + +#endif |