#include "testthing.h" #include #include "client.h" TestThing::TestThing(QObject *parent) : QObject(parent) { c = new Client(this); } void TestThing::testMe() { c->connectToHost("localhost", 6744); }