5bb0f6f91cfcc1a4f5b13efdee1c4883c402207c
[quassel.git] / src / contrib / libqxt-2007-10-24 / tests / QxtFileLock / src / locktestclient.h
1 #ifndef LOCKTESTCLIENT_H
2 #define LOCKTESTCLIENT_H
3
4 #include <QObject>
5
6 /**
7         @author Benjamin Zeller <zbenjamin@libqxt.org>
8 */
9
10 class QTcpSocket;
11
12 class LockTestClient : public QObject
13 {
14     Q_OBJECT
15     public:
16         LockTestClient(QObject *parent = 0);
17         ~LockTestClient();
18     
19     public slots:
20         void startTests();
21         
22     private:
23         QTcpSocket *socket;
24
25 };
26
27 #endif