summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/dcopservice/dcopservice.h
blob: 4e9eda873a0c2c19f7537e6377dac8e560cb8931 (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 <qstringlist.h>
#include <qstring.h>
#include <dcopobject.h>

class %{APPNAME} :  public DCOPObject
{
	K_DCOP

	private:
		QStringList m_List;

	public:
		%{APPNAME}();

		~%{APPNAME}();

	k_dcop:
		QString string(int);

		QStringList list();

		void add(QString);

		bool remove(QString);

		bool exit();


};
#endif