You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
266 B
C++
15 lines
266 B
C++
12 years ago
|
#include "NewMaterialDialog.hpp"
|
||
|
#include "ui_newmaterialdialog.h"
|
||
|
|
||
|
NewMaterialDialog::NewMaterialDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::NewMaterialDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
NewMaterialDialog::~NewMaterialDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|