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
394 B

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