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.
17 lines
237 B
17 lines
237 B
15 years ago
|
#ifndef KIDLTEST_H
|
||
|
#define KIDLTEST_H
|
||
|
|
||
|
#include <dcopobject.h>
|
||
|
|
||
|
class KIDLTest : virtual public DCOPObject
|
||
|
{
|
||
|
K_DCOP
|
||
|
public:
|
||
14 years ago
|
KIDLTest( const TQCString& id );
|
||
15 years ago
|
|
||
|
k_dcop:
|
||
14 years ago
|
virtual TQString hello( const TQString& name );
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|