Remove libqxt from our svn. We don't depend on it anymore thanks to
[quassel.git] / src / contrib / libqxt-2007-10-24 / tests / QxtFileLock / src / threadtestcontroller.h
diff --git a/src/contrib/libqxt-2007-10-24/tests/QxtFileLock/src/threadtestcontroller.h b/src/contrib/libqxt-2007-10-24/tests/QxtFileLock/src/threadtestcontroller.h
deleted file mode 100644 (file)
index a2fa739..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef THREADTESTCONTROLLER_H
-#define THREADTESTCONTROLLER_H
-
-#include <QObject>
-
-/**
-       @author Benjamin Zeller <zbenjamin@libqxt.org>
-*/
-
-
-/**
- * the test controller controls the client over a QTcpSocker port 55555
- * there are some controll commands
- * n : start next test
- * a : abort testing
- * from the client there are two possible answers
- * s: the test succeeded
- * f: the test failed
- */
-
-class QTcpServer;
-
-class ThreadTestController : public QObject
-{
-    Q_OBJECT
-    public:
-        ThreadTestController(QObject *parent = 0);
-        ~ThreadTestController();
-        bool startTests();
-        
-    public slots:
-        void doTests();
-        
-    private:
-        QTcpServer *server;
-
-};
-
-#endif