aboutsummaryrefslogtreecommitdiff
path: root/plugins/Mangatown.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-10-23 07:26:39 +0200
committerdec05eba <dec05eba@protonmail.com>2020-10-23 07:26:39 +0200
commit261b0263f34ffcbe439d68b2e901fd3abbfc1eaf (patch)
tree735d49f2050b52a414766675e4226f3fa8ef0d08 /plugins/Mangatown.hpp
parent05ce6bac22d498fb2827df72f4c2b86d02826042 (diff)
Re-add creators page
Diffstat (limited to 'plugins/Mangatown.hpp')
-rw-r--r--plugins/Mangatown.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Mangatown.hpp b/plugins/Mangatown.hpp
index 10f2500..66d9d2a 100644
--- a/plugins/Mangatown.hpp
+++ b/plugins/Mangatown.hpp
@@ -13,14 +13,15 @@ namespace QuickMedia {
PluginResult get_page(const std::string &str, int page, BodyItems &result_items) override;
PluginResult submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) override;
sf::Vector2i get_thumbnail_max_size() override { return sf::Vector2i(101, 141); };
- private:
- bool extract_id_from_url(const std::string &url, std::string &manga_id) const;
};
class MangatownChaptersPage : public MangaChaptersPage {
public:
MangatownChaptersPage(Program *program, std::string manga_name, std::string manga_url) : MangaChaptersPage(program, std::move(manga_name), std::move(manga_url)) {}
PluginResult submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) override;
+ protected:
+ bool extract_id_from_url(const std::string &url, std::string &manga_id) const override;
+ const char* get_service_name() const override { return "mangatown"; }
};
class MangatownImagesPage : public MangaImagesPage {