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.
24 lines
428 B
24 lines
428 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
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}ProjectConfig(%{APPNAME}Part *part, TQWidget *parent = 0, const char *name = 0);
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private:
|
|
%{APPNAME}Part *m_part;
|
|
};
|
|
|
|
#endif
|