mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 10:20:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			509 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			509 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #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
 | 
