aboutsummaryrefslogtreecommitdiffstats
path: root/bin/templates/qt4project/mywidget.h
blob: 88ee4d9506fd45f6d1710a7b8e627a7f6fef31c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef %PRE_DEF%
#define %PRE_DEF%

#include <QtGui/%BASECLASS%>

class %CLASS% : public %BASECLASS%
{
    Q_OBJECT

public:
    %CLASS%(QWidget *parent = 0);
    ~%CLASS%();
};

#endif // %PRE_DEF%