diff options
Diffstat (limited to 'src/Path.cpp')
-rw-r--r-- | src/Path.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Path.cpp b/src/Path.cpp index cec42fd..e7d4d23 100644 --- a/src/Path.cpp +++ b/src/Path.cpp @@ -21,9 +21,10 @@ using namespace std; namespace Raul { -const std::string Path::prefix = "path:"; -const size_t Path::prefix_len = 5; -const std::string Path::root_uri = Path::prefix + "/"; +const string Path::scheme = "path"; +const string Path::prefix = Path::scheme + ":"; +const size_t Path::prefix_len = prefix.length(); +const string Path::root_uri = Path::prefix + "/"; bool Path::is_valid(const std::basic_string<char>& path_str) |