diff options
author | Treeki <treeki@gmail.com> | 2013-12-25 09:00:59 +0100 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2013-12-25 09:00:59 +0100 |
commit | b7a8b597b00eedde277836eb8530ba742edcad5d (patch) | |
tree | 1b959fa0eec02ff4e22e168aa4379b2b64575ce3 /server/testthing.h | |
download | bounce_qt-master.tar.gz bounce_qt-master.zip |
Diffstat (limited to '')
-rw-r--r-- | server/testthing.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/server/testthing.h b/server/testthing.h new file mode 100644 index 0000000..e402f8d --- /dev/null +++ b/server/testthing.h @@ -0,0 +1,18 @@ +#ifndef TESTTHING_H +#define TESTTHING_H + +#include <QObject> +class Client; + +class TestThing : public QObject { + Q_OBJECT +public: + explicit TestThing(QObject *parent = 0); + Client *c; + +public slots: + void testMe(); +}; + + +#endif // TESTTHING_H |