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.
tdevelop/languages/cpp/app_templates/dcopservice/dcopservice.h

36 lines
387 B

%{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