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


#include "$NEWFILENAMELC$.h"

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

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

/*$SPECIALIZATION$*/