mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 13:30:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <QMainWindow>
 | |
| 
 | |
| QT_BEGIN_NAMESPACE
 | |
| namespace Ui
 | |
| {
 | |
| class MainWindow;
 | |
| }
 | |
| QT_END_NAMESPACE
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace qt
 | |
| {
 | |
| 
 | |
| class MainWindow : public QMainWindow
 | |
| {
 | |
|    Q_OBJECT
 | |
| 
 | |
| public:
 | |
|    MainWindow(QWidget* parent = nullptr);
 | |
|    ~MainWindow();
 | |
| 
 | |
| private:
 | |
|    Ui::MainWindow* ui;
 | |
| };
 | |
| 
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
