blob: 881d8ff0207b2fb9b07b006d37294aa6a14040fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "../../plugins/ImageBoard.hpp"
namespace QuickMedia {
std::unique_ptr<RelatedVideosPage> ImageBoardThreadPage::create_related_videos_page(Program*, const std::string&, const std::string&) {
return nullptr;
}
PluginResult ImageBoardThreadPage::login(const std::string &token, const std::string &pin, std::string &response_msg) {
(void)token;
(void)pin;
response_msg = "Login is not supported on this image board";
return PluginResult::ERR;
}
const std::string& ImageBoardThreadPage::get_pass_id() {
static std::string empty_str;
return empty_str;
}
}
|