Extract comic vine json parsing to its own file + add support for extra fields

This commit is contained in:
Luis Ángel San Martín
2023-05-14 17:48:10 +02:00
parent c7faaf6ff5
commit d5acae870b
5 changed files with 251 additions and 199 deletions

View File

@ -0,0 +1,13 @@
#ifndef COMIC_VINE_JSON_PARSER_H
#define COMIC_VINE_JSON_PARSER_H
#include "comic_db.h"
namespace YACReader {
ComicDB parseCVJSONComicInfo(ComicDB &comic, const QString &json, int count, const QString &publisher);
}
#endif // COMIC_VINE_JSON_PARSER_H