mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 06:10:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			441 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			441 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <QDialog>
 | |
| 
 | |
| namespace Ui
 | |
| {
 | |
| class GpsInfoDialog;
 | |
| }
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace qt
 | |
| {
 | |
| namespace ui
 | |
| {
 | |
| 
 | |
| class GpsInfoDialog : public QDialog
 | |
| {
 | |
|    Q_OBJECT
 | |
| 
 | |
| private:
 | |
|    Q_DISABLE_COPY(GpsInfoDialog)
 | |
| 
 | |
| public:
 | |
|    explicit GpsInfoDialog(QWidget* parent = nullptr);
 | |
|    ~GpsInfoDialog();
 | |
| 
 | |
| private:
 | |
|    class Impl;
 | |
|    std::unique_ptr<Impl> p;
 | |
|    Ui::GpsInfoDialog*    ui;
 | |
| };
 | |
| 
 | |
| } // namespace ui
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
