mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 17:50:04 +00:00
34 lines
437 B
C++
34 lines
437 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui
|
|
{
|
|
class WFODialog;
|
|
}
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace ui
|
|
{
|
|
class WFODialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY_MOVE(WFODialog)
|
|
|
|
public:
|
|
explicit WFODialog(QWidget* parent = nullptr);
|
|
~WFODialog();
|
|
|
|
std::string wfo_id();
|
|
|
|
private:
|
|
class Impl;
|
|
std::unique_ptr<Impl> p;
|
|
Ui::WFODialog* ui;
|
|
};
|
|
} // namespace ui
|
|
} // namespace qt
|
|
} // namespace scwx
|