summaryrefslogtreecommitdiff
path: root/server/testthing.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--server/testthing.h18
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