summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session_state_utils.h
diff options
context:
space:
mode:
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