TSI_Config/tmrrelayassociation.cpp
2024-12-18 16:46:39 +08:00

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;
}