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/kdevpart2/projectconfig.h

24 lines
429 B

%{H_TEMPLATE}
#ifndef %{APPNAMEUC}_PROJECT_CONFIG_H
#define %{APPNAMEUC}_PROJECT_CONFIG_H
#include "%{APPNAMELC}projectconfigbase.h"
class %{APPNAME}Part;
class %{APPNAME}ProjectConfig: public %{APPNAME}ProjectConfigBase
{
TQ_OBJECT
public:
%{APPNAME}ProjectConfig(%{APPNAME}Part *part, TQWidget *parent = 0, const char *name = 0);
public slots:
void accept();
private:
%{APPNAME}Part *m_part;
};
#endif