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


#include "$NEWFILENAMELC$.h"

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

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

/*$SPECIALIZATION$*/