pos: move trans form to form dir.
This commit is contained in:
19
Gui/Form/Transform.cpp
Normal file
19
Gui/Form/Transform.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "Transform.h"
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user