mirror of
				https://github.com/YACReader/yacreader
				synced 2025-10-31 00:04:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			651 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			651 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef READING_LIST_H
 | |
| #define READING_LIST_H
 | |
| 
 | |
| #include "yacreader_global.h"
 | |
| 
 | |
| class ReadingList
 | |
| {
 | |
| public:
 | |
|     ReadingList(const QString &name, qulonglong id, int ordering);
 | |
| 
 | |
|     qulonglong getId() const;
 | |
|     QString getName() const;
 | |
|     int getOrdering() const;
 | |
| 
 | |
| private:
 | |
|     QString name;
 | |
|     qulonglong id;
 | |
|     int ordering;
 | |
| };
 | |
| 
 | |
| class Label
 | |
| {
 | |
| public:
 | |
|     Label(const QString &name, qulonglong id, YACReader::LabelColors colorid);
 | |
| 
 | |
|     YACReader::LabelColors getColorID() const;
 | |
|     QString getName() const;
 | |
|     qulonglong getId() const;
 | |
| 
 | |
| private:
 | |
|     QString name;
 | |
|     qulonglong id;
 | |
|     YACReader::LabelColors colorid;
 | |
| };
 | |
| 
 | |
| #endif // READING_LIST_H
 |