From 8d661807e363c973dc6a6d7e6015495e7cc3a2ab Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 15 Sep 2020 21:38:24 +0200 Subject: Add manga creators page to navigate to others works by the creators --- plugins/Manga.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'plugins/Manga.hpp') diff --git a/plugins/Manga.hpp b/plugins/Manga.hpp index 18ed2f9..0c57d9f 100644 --- a/plugins/Manga.hpp +++ b/plugins/Manga.hpp @@ -8,6 +8,11 @@ namespace QuickMedia { // Return false to stop iteration using PageCallback = std::function; + struct Creator { + std::string name; + std::string url; + }; + class Manga : public Plugin { public: Manga(const std::string &plugin_name) : Plugin(plugin_name) {} @@ -15,5 +20,11 @@ namespace QuickMedia { virtual ImageResult get_number_of_images(const std::string &url, int &num_images) = 0; virtual ImageResult for_each_page_in_chapter(const std::string &chapter_url, PageCallback callback) = 0; virtual bool extract_id_from_url(const std::string &url, std::string &manga_id) = 0; + + virtual PluginResult get_creators_manga_list(const std::string &url, BodyItems &result_items) { return {}; } + + const std::vector& get_creators() const; + protected: + std::vector creators; }; } \ No newline at end of file -- cgit v1.2.3