blob: 723dbae2ce19e46b73519dbbc866ccc89d351740 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | %{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
 |