mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 17:30:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			406 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			406 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <scwx/qt/ui/setup/map_page.hpp>
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace qt
 | |
| {
 | |
| namespace ui
 | |
| {
 | |
| namespace setup
 | |
| {
 | |
| 
 | |
| class MapPage::Impl
 | |
| {
 | |
| public:
 | |
|    explicit Impl() = default;
 | |
|    ~Impl()         = default;
 | |
| };
 | |
| 
 | |
| MapPage::MapPage(QWidget* parent) :
 | |
|     QWizardPage(parent), p {std::make_shared<Impl>()}
 | |
| {
 | |
| }
 | |
| 
 | |
| MapPage::~MapPage() = default;
 | |
| 
 | |
| } // namespace setup
 | |
| } // namespace ui
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
