mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	Ascent/Descent rate functions are fully implemented in diveplannermodel, therefore remove these functions. Signed-off-by: jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			362 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			362 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef TESTPLANNERSHARED_H
 | |
| #define TESTPLANNERSHARED_H
 | |
| #include <QObject>
 | |
| 
 | |
| class TestPlannerShared : public QObject {
 | |
| 	Q_OBJECT
 | |
| 
 | |
| private slots:
 | |
| 	void initTestCase();
 | |
| 
 | |
| 	// test case grouping correspond to panels diveplanner window
 | |
| 	void test_planning();
 | |
| 	void test_gas();
 | |
| 	void test_notes();
 | |
| };
 | |
| 
 | |
| #endif // TESTPLANNERSHARED_H
 |