15 lines
279 B
C++
15 lines
279 B
C++
|
#include "tmrrelayassociation.h"
|
||
|
#include "ui_tmrrelayassociation.h"
|
||
|
|
||
|
TMRRelayAssociation::TMRRelayAssociation(QWidget *parent)
|
||
|
: QDialog(parent)
|
||
|
, ui(new Ui::TMRRelayAssociation)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
TMRRelayAssociation::~TMRRelayAssociation()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|