mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-02 15:41:36 +02:00
add Path::PATH_URI for URI paths (same as PATH_UNIX)
This commit is contained in:
parent
556b4bd32f
commit
b5572b3e59
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user