summaryrefslogtreecommitdiffstats
path: root/kioslave/man/kio_man_test.cpp
blob: 03a7ee12edf0f764180ade0f49b8e852aae56b9c (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/kiotest.in", "/tmp/kiotest.out");
  testproto.showIndex("3");

  return 0;
}