summaryrefslogtreecommitdiffstats
path: root/languages/cpp/subclassing_template/subclass_qt4_template.cpp
blob: c7b3e1f1a39b850080a2c8570f3e211f1bc93fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


#include "$NEWFILENAMELC$.h"

$NEWCLASS$::$NEWCLASS$(TQWidget* parent, Qt::WFlags fl)
: $QTBASECLASS$( parent, fl ), Ui::$BASECLASS$()
{
	setupUi(this);
}

$NEWCLASS$::~$NEWCLASS$()
{
}

/*$SPECIALIZATION$*/