add Path::PATH_URI for URI paths (same as PATH_UNIX)

This commit is contained in:
Guenter Obiltschnig 2016-01-19 11:45:35 +01:00
parent 556b4bd32f
commit b5572b3e59

View File

@ -42,11 +42,12 @@ class Foundation_API Path
public:
enum Style
{
PATH_UNIX, /// Unix-style path
PATH_WINDOWS, /// Windows-style path
PATH_VMS, /// VMS-style path
PATH_NATIVE, /// The current platform's native style
PATH_GUESS /// Guess the style by examining the path
PATH_UNIX, /// Unix-style path
PATH_URI = PATH_UNIX, /// URI-style path, same as Unix-style
PATH_WINDOWS, /// Windows-style path
PATH_VMS, /// VMS-style path
PATH_NATIVE, /// The current platform's native style
PATH_GUESS /// Guess the style by examining the path
};
typedef std::vector<std::string> StringVec;