summaryrefslogtreecommitdiffstats
path: root/tdeioslave/man/tdeio_man_test.cpp
blob: 131e0354122180a8580057e776477689b711b553 (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 "tdeio_man.h"


#include <tdeapplication.h>
#include <tdelocale.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;
}