You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/tdeioslave/man/tdeio_man_test.cpp

39 lines
478 B

#include <tqobject.h>
#include "tdeio_man.h"
#include <tdeapplication.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;
}