mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
19 lines
312 B
C++
19 lines
312 B
C++
#ifndef VOLUME_COMICS_MODEL_H
|
|
#define VOLUME_COMICS_MODEL_H
|
|
|
|
#include "json_model.h"
|
|
|
|
class VolumeComicsModel : public JSONModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit VolumeComicsModel(QObject *parent = 0);
|
|
void load(const QString & json);
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // VOLUME_COMICS_MODEL_H
|