aboutsummaryrefslogtreecommitdiff
path: root/include/DownloadUtils.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-10-16 04:49:14 +0200
committerdec05eba <dec05eba@protonmail.com>2020-10-16 04:49:14 +0200
commit221522cf995cbcd39c956f66423a26bbccae8f72 (patch)
treeb09dd14964465e4d69082725d4ad950141692d8f /include/DownloadUtils.hpp
parent66a97007eb36a112f31e923c20e434ba8b39c4ba (diff)
Matrix: stream download to rapidjson parser
Diffstat (limited to 'include/DownloadUtils.hpp')
-rw-r--r--include/DownloadUtils.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/DownloadUtils.hpp b/include/DownloadUtils.hpp
index 7ce4b15..2d2b813 100644
--- a/include/DownloadUtils.hpp
+++ b/include/DownloadUtils.hpp
@@ -2,6 +2,7 @@
#include <string>
#include <vector>
+#include <rapidjson/document.h>
namespace QuickMedia {
enum class DownloadResult {
@@ -17,4 +18,5 @@ namespace QuickMedia {
DownloadResult download_to_string(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_tor, bool use_browser_useragent = false, bool fail_on_error = true);
DownloadResult download_to_string_cache(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_tor, bool use_browser_useragent = false);
+ DownloadResult download_to_json(const std::string &url, rapidjson::Document &result, const std::vector<CommandArg> &additional_args, bool use_tor, bool use_browser_useragent = false, bool fail_on_error = true);
} \ No newline at end of file