diff options
Diffstat (limited to '')
-rw-r--r-- | server/testthing.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/server/testthing.cpp b/server/testthing.cpp new file mode 100644 index 0000000..0c0d5e9 --- /dev/null +++ b/server/testthing.cpp @@ -0,0 +1,13 @@ +#include "testthing.h" +#include <QTcpServer> +#include "client.h" + +TestThing::TestThing(QObject *parent) : QObject(parent) { + c = new Client(this); +} + +void TestThing::testMe() { + c->connectToHost("localhost", 6744); +} + + |