Settings dialog stub

This commit is contained in:
Dan Paulat 2022-11-30 00:46:15 -06:00
parent f98eb0ee1f
commit 7a430da807
4 changed files with 148 additions and 3 deletions

View file

@ -0,0 +1,33 @@
#include "settings_dialog.hpp"
#include "ui_settings_dialog.h"
namespace scwx
{
namespace qt
{
namespace ui
{
class SettingsDialogImpl
{
public:
explicit SettingsDialogImpl() {}
~SettingsDialogImpl() = default;
};
SettingsDialog::SettingsDialog(QWidget* parent) :
QDialog(parent),
p {std::make_unique<SettingsDialogImpl>()},
ui(new Ui::SettingsDialog)
{
ui->setupUi(this);
}
SettingsDialog::~SettingsDialog()
{
delete ui;
}
} // namespace ui
} // namespace qt
} // namespace scwx