diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Fourchan.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/Fourchan.hpp b/plugins/Fourchan.hpp index 33c6579..c9d649f 100644 --- a/plugins/Fourchan.hpp +++ b/plugins/Fourchan.hpp @@ -6,9 +6,11 @@ #include <condition_variable> namespace QuickMedia { + class Program; + class Fourchan : public ImageBoard { public: - Fourchan(); + Fourchan(const std::string &resources_root); ~Fourchan() override; PluginResult get_front_page(BodyItems &result_items) override; SearchResult search(const std::string &url, BodyItems &result_items) override; @@ -40,5 +42,6 @@ namespace QuickMedia { bool thread_list_cached = false; bool running = true; std::vector<std::string> cached_media_urls; + std::string resources_root; }; }
\ No newline at end of file |