blob: e99eb1421c551c0f516761fe1c5b1de119676a62 (
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
39
40
41
42
43
|
#include "test.h"
class TestObject : public KShared
{
public:
TestObject(const TQCString &_app) : app(_app)
{ tqWarning("Creating TestObject belonging to '%s'", app.data()); }
~TestObject()
{ tqWarning("Destructing TestObject belonging to '%s'", app.data()); }
protected:
TQCString app;
};
TestModule::TestModule(const TQCString &obj) : KDEDModule(obj)
{
// Do stuff here
setIdleTimeout(15); // 15 seconds idle timeout.
}
TQString TestModule::world()
{
return "Hello World!";
}
void TestModule::idle()
{
tqWarning("TestModule is idle.");
}
void TestModule::registerMe(const TQCString &app)
{
insert(app, "test", new TestObject(app));
// When 'app' unregisters with DCOP, the TestObject will get deleted.
}
extern "C" {
KDE_EXPORT KDEDModule *create_test(const TQCString &obj)
{
return new TestModule(obj);
}
};
#include "test.moc"
|