You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
519 B
39 lines
519 B
#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);
|
|
|
|
};
|