From 348846413d513da5991fbb1e1b210cfb52a21c56 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Wed, 22 Dec 2004 09:54:43 +0000 Subject: [PATCH] Explain renameParent() in function doc. --- src/utility/path.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utility/path.hpp b/src/utility/path.hpp index 5f377f7a..8fc376d5 100644 --- a/src/utility/path.hpp +++ b/src/utility/path.hpp @@ -140,6 +140,8 @@ public: const bool isParentOf(const path& p) const; /** Rename a parent component in the path. + * Example: path("a/b/c/d").renameParent("a/b", "x/y/z") + * will return path("x/y/z/c/d"). * * @param oldPath old parent path * @param newPath new parent path