mirror of
				https://github.com/YACReader/yacreader
				synced 2025-11-03 16:54:39 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			246 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			246 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef COMICS_MODEL_H
 | 
						|
#define COMICS_MODEL_H
 | 
						|
 | 
						|
#include "json_model.h"
 | 
						|
 | 
						|
class ComicsModel : public JSONModel
 | 
						|
{
 | 
						|
	Q_OBJECT
 | 
						|
public:
 | 
						|
	explicit ComicsModel(QObject *parent = 0);
 | 
						|
 | 
						|
signals:
 | 
						|
 | 
						|
public slots:
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
#endif // COMICS_MODEL_H
 |