Files
frelay/Gui/Control/Transform.h

29 lines
413 B
C
Raw Normal View History

2025-06-16 23:41:35 +08:00
#ifndef TRANSFORM_H
2025-06-16 20:06:49 +08:00
#define TRANSFORM_H
#include <ClientCore.h>
#include <QDialog>
2025-06-16 23:41:35 +08:00
#include <QFile>
2025-06-16 20:06:49 +08:00
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