summaryrefslogtreecommitdiffstats
path: root/kded/test/test.h
blob: 9382a6fbace9798143a8ed5b24b8bda8808b40d4 (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 TQCString &obj);

   void idle();

k_dcop:
   TQString world();
   void registerMe(const TQCString &app);
};

#endif