blob: c5625705a48ae90dda75a7f2828555cde8a2ec07 (
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
{
    TQ_OBJECT
  
public:
    %{APPNAME}GlobalConfig(%{APPNAME}Part *part, TQWidget *parent = 0, const char *name = 0);
public slots:
    void accept();
private:
    %{APPNAME}Part *m_part;
};
#endif
 |