mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			391 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			391 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef TAB_DIVE_STATISTICS_H
 | |
| #define TAB_DIVE_STATISTICS_H
 | |
| 
 | |
| #include "TabBase.h"
 | |
| 
 | |
| namespace Ui {
 | |
| 	class TabDiveStatistics;
 | |
| };
 | |
| 
 | |
| class TabDiveStatistics : public TabBase {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	TabDiveStatistics(QWidget *parent = 0);
 | |
| 	~TabDiveStatistics();
 | |
| 	void updateData() override;
 | |
| 	void clear() override;
 | |
| 
 | |
| private:
 | |
| 	Ui::TabDiveStatistics *ui;
 | |
| };
 | |
| 
 | |
| #endif
 |