Add method to delete metadata from ComicInfo

This commit is contained in:
Luis Ángel San Martín
2022-10-24 18:42:38 +02:00
parent 3fecc3316e
commit d22e5eaaa7
2 changed files with 46 additions and 0 deletions

View File

@ -19,6 +19,8 @@ public:
ComicInfo(const ComicInfo &comicInfo);
~ComicInfo();
void deleteMetadata();
ComicInfo &operator=(const ComicInfo &comicInfo);
bool operator==(const ComicInfo &other) { return id == other.id; }