mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
29 lines
413 B
C++
29 lines
413 B
C++
#pragma once
|
|
|
|
#include <scwx/qt/ui/settings/settings_page_widget.hpp>
|
|
|
|
#include <QWidget>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace ui
|
|
{
|
|
|
|
class UnitSettingsWidget : public SettingsPageWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit UnitSettingsWidget(QWidget* parent = nullptr);
|
|
~UnitSettingsWidget();
|
|
|
|
private:
|
|
class Impl;
|
|
std::shared_ptr<Impl> p;
|
|
};
|
|
|
|
} // namespace ui
|
|
} // namespace qt
|
|
} // namespace scwx
|