summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/UicOnly/UicOnly.cpp
blob: 8eee6d213866baffd388fced51bf1a10b117e8d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "ui_uiC.h"
#include "ui_uiD.h"
// AUTOUIC includes on the first two lines of a source file
#include "UicOnly.hpp"

UicOnly::UicOnly()
  : uiA(new Ui::UiA)
  , uiB(new Ui::UiB)
{
  Ui::UiC uiC;
  Ui::UiD uiD;
}

UicOnly::~UicOnly()
{
  delete uiB;
  delete uiA;
}