mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
15 lines
250 B
C++
15 lines
250 B
C++
#include "dialogeditgroup.h"
|
|
#include "computersLocations.h"
|
|
|
|
DialogEditGroup::DialogEditGroup(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::DialogEditGroup)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
DialogEditGroup::~DialogEditGroup()
|
|
{
|
|
delete ui;
|
|
}
|