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.
24 lines
361 B
24 lines
361 B
/* 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
|