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 3d849e2..c9047be 100644
--- a/include/Path.hpp
+++ b/include/Path.hpp
@@ -22,6 +22,11 @@ namespace QuickMedia {
return *this;
}
+ Path& append(const char *str) {
+ data += str;
+ return *this;
+ }
+
// Includes extension
const char* filename() const {
size_t index = data.rfind('/');