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


#include "$NEWFILENAMELC$.h"

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

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

/*$SPECIALIZATION$*/