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.
23 lines
418 B
23 lines
418 B
15 years ago
|
%{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, QWidget *parent = 0, const char *name = 0);
|
||
|
|
||
|
public slots:
|
||
|
void accept();
|
||
|
|
||
|
private:
|
||
|
%{APPNAME}Part *m_part;
|
||
|
};
|
||
|
|
||
|
#endif
|