summaryrefslogtreecommitdiff
path: root/bin/templates/qt4project/mywidget_form.cpp
blob: 33b14afab8ea825fb7260ac7e23dac4e93233c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "%INCLUDE%"
#include "%UI_HDR%"

%CLASS%::%CLASS%(QWidget *parent)
    : %BASECLASS%(parent), ui(new Ui::%CLASS%Class)
{
    ui->setupUi(this);
}

%CLASS%::~%CLASS%()
{
    delete ui;
}