mirror of
				https://github.com/YACReader/yacreader
				synced 2025-10-31 00:04:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			219 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			219 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef __LIBRARY_ITEM_H
 | |
| #define __LIBRARY_ITEM_H
 | |
| 
 | |
| #include <QObject>
 | |
| 
 | |
| class LibraryItem
 | |
| {
 | |
| public:
 | |
| 	virtual bool isDir() = 0;
 | |
| 	QString name;
 | |
| 	QString path;
 | |
| 	qulonglong parentId;
 | |
| 	qulonglong id;
 | |
| };
 | |
| 
 | |
| #endif |