pos: move trans form to form dir.

This commit is contained in:
2025-06-18 11:11:08 +08:00
parent 3248713cea
commit 280721f29b
7 changed files with 5 additions and 3 deletions

28
Gui/Form/Transform.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef TRANSFORM_H
#define TRANSFORM_H
#include <ClientCore.h>
#include <QDialog>
#include <QFile>
namespace Ui {
class TransForm;
}
class TransForm : public QDialog
{
Q_OBJECT
public:
explicit TransForm(QWidget* parent = nullptr);
~TransForm();
public:
void SetClientCore(ClientCore* clientCore);
private:
ClientCore* clientCore_;
Ui::TransForm* ui;
};
#endif // TRANSFORM_H