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