summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2012-06-23 05:08:09 +0000
committerTim Mayberry <mojofunk@gmail.com>2012-06-23 05:08:09 +0000
commita049a69a1ae47b1f47b9d15aa373f4836a07e87e (patch)
tree34bd800c832f9e5c555331064cd63889a906500e /libs
parenta239047380d1cbd35ec8fc2f5e7366bbb9811d81 (diff)
Move docs for PBD::sys::get_absolute_path into header
git-svn-id: svn://localhost/ardour2/branches/3.0@12861 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd/filesystem.cc1
-rw-r--r--libs/pbd/pbd/filesystem.h4
2 files changed, 4 insertions, 1 deletions
diff --git a/libs/pbd/filesystem.cc b/libs/pbd/filesystem.cc
index 39d8495fc4..4f0c8a204a 100644
--- a/libs/pbd/filesystem.cc
+++ b/libs/pbd/filesystem.cc
@@ -211,7 +211,6 @@ extension (const path & p)
}
-/** Take a (possibly) relative path and make it absolute */
path
get_absolute_path (const path & p)
{
diff --git a/libs/pbd/pbd/filesystem.h b/libs/pbd/pbd/filesystem.h
index d64f9619bb..6f84606d5d 100644
--- a/libs/pbd/pbd/filesystem.h
+++ b/libs/pbd/pbd/filesystem.h
@@ -188,6 +188,10 @@ std::string basename (const path& p);
*/
std::string extension (const path& p);
+/**
+ * Take a (possibly) relative path and make it absolute
+ * @return An absolute path
+ */
path get_absolute_path (const path &);
/**