summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/tdevpart/tdevpart_widget.h
blob: e9762de3f49cad05f9f182c30e90f195ffa0505b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%{H_TEMPLATE}
#ifndef %{APPNAMEUC}_WIDGET_H
#define %{APPNAMEUC}_WIDGET_H

#include <tqwidget.h>
#include <tqstring.h>

class TDevProject;
class %{APPNAME}Part;

class %{APPNAME}Widget: public TQWidget
{
    Q_OBJECT
  
public:  
    %{APPNAME}Widget(%{APPNAME}Part *part);
    ~%{APPNAME}Widget();

private:
    %{APPNAME}Part *m_part;
};


#endif