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
422 B
24 lines
422 B
%{H_TEMPLATE}
|
|
#ifndef %{APPNAMEUC}_GLOBAL_CONFIG_H
|
|
#define %{APPNAMEUC}_GLOBAL_CONFIG_H
|
|
|
|
#include "%{APPNAMELC}globalconfigbase.h"
|
|
|
|
class %{APPNAME}Part;
|
|
|
|
class %{APPNAME}GlobalConfig: public %{APPNAME}GlobalConfigBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}GlobalConfig(%{APPNAME}Part *part, TQWidget *parent = 0, const char *name = 0);
|
|
|
|
public slots:
|
|
void accept();
|
|
|
|
private:
|
|
%{APPNAME}Part *m_part;
|
|
};
|
|
|
|
#endif
|