Add function for parsing xml info into ComicInfo

This commit is contained in:
Luis Ángel San Martín
2021-09-27 15:28:47 +02:00
parent a77facce6d
commit 0910937e39
2 changed files with 196 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#ifndef XMLINFOPARSER_H
#define XMLINFOPARSER_H
#include "comic_db.h"
namespace YACReader {
bool parseXMLIntoInfo(const QByteArray &xmlRawData, ComicInfo &info);
}
#endif // XMLINFOPARSER_H