summaryrefslogtreecommitdiffstats
path: root/kded/test/test.h
blob: c805b7921d0db852ec2728a1434dfe2fb899337d (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
{
   Q_OBJECT
   K_DCOP
public:
   TestModule(const QCString &obj);

   void idle();

k_dcop:
   QString world();
   void registerMe(const QCString &app);
};

#endif