summaryrefslogtreecommitdiff
path: root/src/paths.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/paths.hh')
-rw-r--r--src/paths.hh18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/paths.hh b/src/paths.hh
new file mode 100644
index 0000000..adec361
--- /dev/null
+++ b/src/paths.hh
@@ -0,0 +1,18 @@
+// -*- mode: c++; c-basic-offset: 2; -*-
+
+#ifndef PATHS_HH
+#define PATHS_HH
+
+#include <string>
+
+class Paths {
+public:
+ static std::string join(std::string const& base, std::string const& path);
+ static std::string cleanup(std::string const& path);
+
+private:
+ Paths() {}
+ ~Paths() {}
+};
+
+#endif // PATHS_HH