summaryrefslogtreecommitdiffstats
path: root/dcopjava/tests/test_impl.h
blob: b96c1560c8b2f021ba7c2a312445cd8d7fd59378 (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 "test.h"


class test_impl : virtual public test
{
public:

  test_impl() : DCOPObject("test") {};

  void noArg();

  void asyncNoArg();

  void oneArg(bool b);

  bool returnFalse();

  bool returnTrue();

  short shortArg(short in);

  int intArg(int in);

  long longArg(long in);

  float floatArg(float in);
  
  double doubleArg(double in);

  TTQString stringArg(TTQString in);

  TTQCString cstringArg(TTQCString in);

  TTQStringList stringListArg(TTQStringList in);

  DCOPRef DCOPRefArg(DCOPRef in);

};