You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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;
|
|
}
|