diff options
Diffstat (limited to 'src/utility/path.hpp')
-rw-r--r-- | src/utility/path.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/utility/path.hpp b/src/utility/path.hpp index bc980889..8a05f1a2 100644 --- a/src/utility/path.hpp +++ b/src/utility/path.hpp @@ -55,7 +55,7 @@ public: path& operator/=(const component& c); // Return the parent path - path parent() const; + path getParent() const; // Assignment path& operator=(const path& p); @@ -69,25 +69,25 @@ public: * * @return true if the path is empty (no components = root) */ - const bool empty() const; + const bool isEmpty() const; /** Return the last component of this path (const version). * * @return last component */ - const component last() const; + const component getLastComponent() const; /** Return the last component of this path (non-const version). * * @return last component */ - component& last(); + component& getLastComponent(); /** Return the number of components in this path. * * @return number of components */ - const int size() const; + const int getSize() const; /** Return the specified component of the path (const version). * |