aboutsummaryrefslogtreecommitdiff
path: root/plugins/Soundcloud.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-12-01 00:00:49 +0100
committerdec05eba <dec05eba@protonmail.com>2019-12-01 00:00:49 +0100
commite300ab60cdd650563f81ce33af58f8f44048d91c (patch)
tree397926e8849084d2304eb7e90246f5cd42e187c5 /plugins/Soundcloud.hpp
parentfa59cd8c7e31afce5b5233e844084f881a411446 (diff)
remove broken soundcloud
Diffstat (limited to 'plugins/Soundcloud.hpp')
-rw-r--r--plugins/Soundcloud.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/plugins/Soundcloud.hpp b/plugins/Soundcloud.hpp
deleted file mode 100644
index cf920be..0000000
--- a/plugins/Soundcloud.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include "Plugin.hpp"
-
-namespace QuickMedia {
- class Soundcloud : public Plugin {
- public:
- Soundcloud() : Plugin("soundcloud") {}
- SuggestionResult update_search_suggestions(const std::string &text, BodyItems &result_items) override;
- BodyItems get_related_media(const std::string &url) override;
- bool search_suggestions_has_thumbnails() const override { return true; }
- bool search_results_has_thumbnails() const override { return false; }
- int get_search_delay() const override { return 350; }
- bool search_suggestion_is_search() const override { return true; }
- Page get_page_after_search() const override { return Page::VIDEO_CONTENT; }
- private:
- std::string last_related_media_playlist_id;
- BodyItems last_playlist_data;
- };
-} \ No newline at end of file