summaryrefslogtreecommitdiffstats
path: root/tdeioslave/man/tdeio_man_test.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 15:11:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 15:11:21 -0600
commit472156a41b1348c714986c772759ad950fffbe75 (patch)
tree86369dab3bbe3d52c49051665bdfb49b9dfc16e3 /tdeioslave/man/tdeio_man_test.cpp
parent3e891e81335e5243583dab27faeebf001b8139a6 (diff)
downloadtdebase-472156a41b1348c714986c772759ad950fffbe75.tar.gz
tdebase-472156a41b1348c714986c772759ad950fffbe75.zip
Rename kioslaves
Diffstat (limited to 'tdeioslave/man/tdeio_man_test.cpp')
-rw-r--r--tdeioslave/man/tdeio_man_test.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/tdeioslave/man/tdeio_man_test.cpp b/tdeioslave/man/tdeio_man_test.cpp
new file mode 100644
index 000000000..a7f41434e
--- /dev/null
+++ b/tdeioslave/man/tdeio_man_test.cpp
@@ -0,0 +1,38 @@
+
+
+#include <tqobject.h>
+
+#include "tdeio_man.h"
+
+
+#include <kapplication.h>
+#include <klocale.h>
+
+
+class tdeio_man_test : public MANProtocol
+{
+ Q_OBJECT
+
+public:
+ tdeio_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/tdeiotest.in", "/tmp/tdeiotest.out");
+ testproto.showIndex("3");
+
+ return 0;
+}
+
+