summaryrefslogtreecommitdiffstats
path: root/kioslave/man/kio_man_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kioslave/man/kio_man_test.cpp')
-rw-r--r--kioslave/man/kio_man_test.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/kioslave/man/kio_man_test.cpp b/kioslave/man/kio_man_test.cpp
deleted file mode 100644
index 03a7ee12e..000000000
--- a/kioslave/man/kio_man_test.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-#include <tqobject.h>
-
-#include "kio_man.h"
-
-
-#include <kapplication.h>
-#include <klocale.h>
-
-
-class kio_man_test : public MANProtocol
-{
- Q_OBJECT
-
-public:
- kio_man_test(const TQCString &pool_socket, const TQCString &app_socket);
-
-protected:
- virtual void data(int);
-
-};
-
-
-
-
-
-int main(int argc, char **argv)
-{
- TDEApplication a( argc, argv , "p2");
-
- MANProtocol testproto("/tmp/kiotest.in", "/tmp/kiotest.out");
- testproto.showIndex("3");
-
- return 0;
-}
-
-