mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
19 lines
228 B
C++
19 lines
228 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
|