blob: bfb78a652a8057556012cdf4b88a693b8c08b11e (
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 <qobject.h>
#include "kio_man.h"
#include <kapplication.h>
#include <klocale.h>
class kio_man_test : public MANProtocol
{
Q_OBJECT
public:
kio_man_test(const QCString &pool_socket, const QCString &app_socket);
protected:
virtual void data(int);
};
int main(int argc, char **argv)
{
KApplication a( argc, argv , "p2");
MANProtocol testproto("/tmp/kiotest.in", "/tmp/kiotest.out");
testproto.showIndex("3");
return 0;
}
|