blob: 0c72536b0bd14fb23b3d9e10e7a640010340b9fd (
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);
TQString stringArg(TQString in);
TQCString cstringArg(TQCString in);
TQStringList stringListArg(TQStringList in);
DCOPRef DCOPRefArg(DCOPRef in);
};
|