2022-01-09 21:07:41 +01:00
|
|
|
#include "objectinformationdialog.h"
|
|
|
|
|
#include "ui_objectinformationdialog.h"
|
|
|
|
|
|
2022-01-10 21:49:06 +01:00
|
|
|
ObjectInformationDialog::ObjectInformationDialog(ProjectContainer &project, QWidget *parent) :
|
2022-01-09 21:07:41 +01:00
|
|
|
QDialog{parent},
|
2022-01-10 21:49:06 +01:00
|
|
|
m_ui{std::make_unique<Ui::ObjectInformationDialog>()},
|
|
|
|
|
m_project{project}
|
2022-01-09 21:07:41 +01:00
|
|
|
{
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ObjectInformationDialog::~ObjectInformationDialog() = default;
|