summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session_state_utils.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-05-12 17:03:42 +0000
committerCarl Hetherington <carl@carlh.net>2009-05-12 17:03:42 +0000
commit3b89d9eaa03406a5e03648f47734211f09b89d62 (patch)
tree1c8d151bca327d4a5cb7047c8591aa814b9b4ec8 /libs/ardour/ardour/session_state_utils.h
parent2e5c935990d6ea5cc6e9a5a6de0fd8c52e68657c (diff)
Remove most using declarations from header files.
git-svn-id: svn://localhost/ardour2/branches/3.0@5069 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/session_state_utils.h')
-rw-r--r--libs/ardour/ardour/session_state_utils.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/libs/ardour/ardour/session_state_utils.h b/libs/ardour/ardour/session_state_utils.h
index f9b1cdb63f..a41456b8f7 100644
--- a/libs/ardour/ardour/session_state_utils.h
+++ b/libs/ardour/ardour/session_state_utils.h
@@ -26,10 +26,6 @@
namespace ARDOUR {
-using std::string;
-using std::vector;
-using namespace PBD;
-
/**
* Attempt to create a backup copy of a file.
*
@@ -38,7 +34,7 @@ using namespace PBD;
*
* @return true if successful, false otherwise.
*/
-bool create_backup_file (const sys::path & file_path);
+bool create_backup_file (const PBD::sys::path & file_path);
/**
* Get the absolute paths to all state files in the directory
@@ -47,8 +43,8 @@ bool create_backup_file (const sys::path & file_path);
* @param directory_path The absolute path to a directory.
* @param result vector to contain resulting state files.
*/
-void get_state_files_in_directory (const sys::path & directory_path,
- vector<sys::path>& result);
+void get_state_files_in_directory (const PBD::sys::path & directory_path,
+ std::vector<PBD::sys::path>& result);
/**
* Given a vector of paths to files, return a vector containing
@@ -58,7 +54,7 @@ void get_state_files_in_directory (const sys::path & directory_path,
* @return a vector containing a list of file names without any
* filename extension.
*/
-vector<string> get_file_names_no_extension (const vector<sys::path> & file_paths);
+std::vector<std::string> get_file_names_no_extension (const std::vector<PBD::sys::path> & file_paths);
} // namespace ARDOUR