aboutsummaryrefslogtreecommitdiff
path: root/include/Path.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Path.hpp')
-rw-r--r--include/Path.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Path.hpp b/include/Path.hpp
index 351fd5d..bd978bc 100644
--- a/include/Path.hpp
+++ b/include/Path.hpp
@@ -21,6 +21,11 @@ namespace QuickMedia {
return *this;
}
+ Path& append(const std::string &str) {
+ data += str;
+ return *this;
+ }
+
std::string data;
};
} \ No newline at end of file