diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 15:11:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 15:11:21 -0600 |
commit | 472156a41b1348c714986c772759ad950fffbe75 (patch) | |
tree | 86369dab3bbe3d52c49051665bdfb49b9dfc16e3 /tdeioslave/man/tdeio_man_test.cpp | |
parent | 3e891e81335e5243583dab27faeebf001b8139a6 (diff) | |
download | tdebase-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.cpp | 38 |
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; +} + + |