blob: a181c47b3fb873c3aafca158a16f2b1de6ba330b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#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/tdeiotest.in", "/tmp/tdeiotest.out");
testproto.showIndex("3");
return 0;
}
|