aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Path.hpp1
-rw-r--r--include/QuickMedia.hpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/Path.hpp b/include/Path.hpp
index bb08cc6..67e6942 100644
--- a/include/Path.hpp
+++ b/include/Path.hpp
@@ -10,6 +10,7 @@ namespace QuickMedia {
Path(const char *path) : data(path) {}
Path(const std::string &path) : data(path) {}
+ // TODO: Return a copy instead? makes it easier to use. Do the same for append
Path& join(const Path &other) {
data += "/";
data += other.data;
diff --git a/include/QuickMedia.hpp b/include/QuickMedia.hpp
index 27c6bb2..c3f06de 100644
--- a/include/QuickMedia.hpp
+++ b/include/QuickMedia.hpp
@@ -72,6 +72,7 @@ namespace QuickMedia {
mgl::Text search_result_text;
AsyncTask<FetchResult> fetch_future;
AsyncTask<BodyItems> next_page_future;
+ std::string body_item_url_before_refresh;
};
class Program {