15 lines
		
	
	
		
			166 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			166 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef LOBJA_P_HPP
 | |
| #define LOBJA_P_HPP
 | |
| 
 | |
| #include <QObject>
 | |
| 
 | |
| class LObjAPrivate : public QObject
 | |
| {
 | |
|   Q_OBJECT
 | |
| public:
 | |
|   LObjAPrivate();
 | |
|   ~LObjAPrivate();
 | |
| };
 | |
| 
 | |
| #endif
 |