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