aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Manga.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/Manga.hpp b/plugins/Manga.hpp
index 020099e..74d8ed1 100644
--- a/plugins/Manga.hpp
+++ b/plugins/Manga.hpp
@@ -7,9 +7,15 @@ namespace QuickMedia {
// Return false to stop iteration
using PageCallback = std::function<bool(const std::string &url)>;
+ enum class CreatorType {
+ AUTHOR,
+ ARTIST
+ };
+
struct Creator {
std::string name;
std::string url;
+ CreatorType creator_type;
};
class MangaImagesPage : public Page {