mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
	
	
		
			20 lines
		
	
	
	
		
			321 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
	
		
			321 B
		
	
	
	
		
			C
		
	
	
	
	
	
|  | // SPDX-License-Identifier: GPL-2.0
 | ||
|  | #ifndef TESTQML_H
 | ||
|  | #define TESTQML_H
 | ||
|  | #include <QtQuickTest>
 | ||
|  | #include <QQmlEngine>
 | ||
|  | #include <QQmlContext>
 | ||
|  | #include <QObject>
 | ||
|  | 
 | ||
|  | class QMLTestSetup : public QObject { | ||
|  | 	Q_OBJECT | ||
|  | 
 | ||
|  | public: | ||
|  | 	QMLTestSetup() {} | ||
|  | 
 | ||
|  | public slots: | ||
|  | 	void qmlEngineAvailable(QQmlEngine *engine); | ||
|  | }; | ||
|  | 
 | ||
|  | #endif // TESTQML_H
 |