You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
476 B
C++
39 lines
476 B
C++
15 years ago
|
|
||
|
|
||
15 years ago
|
#include <tqobject.h>
|
||
15 years ago
|
|
||
12 years ago
|
#include "tdeio_man.h"
|
||
15 years ago
|
|
||
|
|
||
|
#include <kapplication.h>
|
||
|
#include <klocale.h>
|
||
|
|
||
|
|
||
12 years ago
|
class tdeio_man_test : public MANProtocol
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
12 years ago
|
tdeio_man_test(const TQCString &pool_socket, const TQCString &app_socket);
|
||
15 years ago
|
|
||
|
protected:
|
||
|
virtual void data(int);
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
12 years ago
|
TDEApplication a( argc, argv , "p2");
|
||
15 years ago
|
|
||
12 years ago
|
MANProtocol testproto("/tmp/tdeiotest.in", "/tmp/tdeiotest.out");
|
||
15 years ago
|
testproto.showIndex("3");
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|