blob: 619868195123644f119a6c51cf6287d2795c286d (
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);
QString stringArg(QString in);
QCString cstringArg(QCString in);
QStringList stringListArg(QStringList in);
DCOPRef DCOPRefArg(DCOPRef in);
};
|