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