diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-08-04 02:28:33 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2019-08-04 02:28:36 +0200 |
commit | 4b24638802385816fb5f90c95f175b30ae2398a8 (patch) | |
tree | ab6c7cbfd7d20c2065e160f6e8f20be02e4cc1b5 /plugins | |
parent | d9fb89269fd30fa44d2b3728b9ae3c7b896a77d3 (diff) |
Add youtube video playing, page navigation
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Plugin.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/Plugin.hpp b/plugins/Plugin.hpp index 9d62356..dd50998 100644 --- a/plugins/Plugin.hpp +++ b/plugins/Plugin.hpp @@ -7,12 +7,14 @@ namespace QuickMedia { class BodyItem { public: - BodyItem(const std::string &_title): title(_title) { + BodyItem(const std::string &_title): title(_title), visible(true) { } std::string title; - std::string cover_url; + std::string url; + std::string thumbnail_url; + bool visible; }; enum class SearchResult { |