#ifndef TESTTHING_H #define TESTTHING_H #include class Client; class TestThing : public QObject { Q_OBJECT public: explicit TestThing(QObject *parent = 0); Client *c; public slots: void testMe(); }; #endif // TESTTHING_H