mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 19:00:29 -04:00
18 lines
239 B
C++
18 lines
239 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 = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // COMICS_MODEL_H
|