paysages3d/src/interface/desktop/textures/DialogTexturesLayer.cpp

23 lines
470 B
C++
Raw Normal View History

2013-10-03 21:28:30 +00:00
#include "DialogTexturesLayer.h"
#include "ui_DialogTexturesLayer.h"
#include "TexturesDefinition.h"
2013-10-03 21:28:30 +00:00
DialogTexturesLayer::DialogTexturesLayer(QWidget* parent, TexturesDefinition* textures, int layer) :
QDialog(parent),
ui(new Ui::DialogTexturesLayer)
{
ui->setupUi(this);
this->layer = layer;
original = textures;
modified = new TexturesDefinition(NULL);
2013-10-03 21:28:30 +00:00
}
DialogTexturesLayer::~DialogTexturesLayer()
{
delete ui;
delete modified;
2013-10-03 21:28:30 +00:00
}