2025-06-16 23:41:35 +08:00
|
|
|
#include "Transform.h"
|
2025-06-16 20:06:49 +08:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
|
|
#include "ui_Transform.h"
|
|
|
|
|
|
|
|
|
|
TransForm::TransForm(QWidget* parent) : QDialog(parent), ui(new Ui::TransForm)
|
|
|
|
|
{
|
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TransForm::~TransForm()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TransForm::SetClientCore(ClientCore* clientCore)
|
|
|
|
|
{
|
|
|
|
|
clientCore_ = clientCore;
|
|
|
|
|
}
|