blob: 5ce672e0d9a4c183bd2f34619433db73532e0a96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* This code is placed in the public domain */
/* Waldo Bastian - 2001/04/01 */
#ifndef _TEST_H_
#define _TEST_H_
#include "kdedmodule.h"
class TestModule : public KDEDModule
{
TQ_OBJECT
K_DCOP
public:
TestModule(const TQCString &obj);
void idle();
k_dcop:
TQString world();
void registerMe(const TQCString &app);
};
#endif
|