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.
tdebindings/dcopjava/tests/test_impl.h

39 lines
525 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);
TTQString stringArg(TTQString in);
TTQCString cstringArg(TTQCString in);
TTQStringList stringListArg(TTQStringList in);
DCOPRef DCOPRefArg(DCOPRef in);
};