You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			264 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			264 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #ifndef ITEM_H
 | |
| #define ITEM_H
 | |
| 
 | |
| #include <stable.h>
 | |
| 
 | |
| #include "models/basemodel.h"
 | |
| 
 | |
| namespace jop {
 | |
| 
 | |
| class Item : public BaseModel {
 | |
| 
 | |
| 	Q_OBJECT
 | |
| 
 | |
| public:
 | |
| 
 | |
| 	Item();
 | |
| 	QString serialize() const;
 | |
| 	void patchFriendlyString(const QString& patch);
 | |
| 
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif // ITEM_H
 |