summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/filesystem.h
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2012-06-23 05:07:49 +0000
committerTim Mayberry <mojofunk@gmail.com>2012-06-23 05:07:49 +0000
commita22dd8c20a656a36d93e3e31ee3c04ca7e9b7278 (patch)
tree7fbf1b3717c478815bee4ad782ccc4b16fdb1218 /libs/pbd/pbd/filesystem.h
parent4cda435203600e7e422525c6336baab483d6f009 (diff)
Move PBD::sys::copy_file/s into pbd/file_utils.h and PBD:: namespace
Copy files no longer depends on PBD::sys::path so move it git-svn-id: svn://localhost/ardour2/branches/3.0@12853 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/pbd/filesystem.h')
-rw-r--r--libs/pbd/pbd/filesystem.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/libs/pbd/pbd/filesystem.h b/libs/pbd/pbd/filesystem.h
index c956c8beb1..aa9f9ef502 100644
--- a/libs/pbd/pbd/filesystem.h
+++ b/libs/pbd/pbd/filesystem.h
@@ -170,20 +170,6 @@ bool remove(const path & p);
void rename (const path& from_path, const path& to_path);
/**
- * Attempt to copy the contents of the file from_path to a new file
- * at path to_path.
- *
- * @return true if file was successfully copied
- */
-bool copy_file(const std::string & from_path, const std::string & to_path);
-
-/**
- * Attempt to copy all regular files from from_path to a new directory.
- * This method does not recurse.
- */
-void copy_files(const std::string & from_path, const std::string & to_dir);
-
-/**
* @return The substring of the filename component of the path, starting
* at the beginning of the filename up to but not including the last dot.
*