blob: 59aa3c28fadab8f17e20bfde1b5232583f8037c1 (
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
|
%{H_TEMPLATE}
#ifndef _%{APPNAME}_H
#define _%{APPNAME}_H
#include <tqstringlist.h>
#include <tqstring.h>
#include <dcopobject.h>
class %{APPNAME} : public DCOPObject
{
K_DCOP
private:
TQStringList m_List;
public:
%{APPNAME}();
~%{APPNAME}();
k_dcop:
TQString string(int);
TQStringList list();
void add(TQString);
bool remove(TQString);
bool exit();
};
#endif
|