Das BlinkenSendButtons
[ardour.git] / libs / ardour / ardour / session_state_utils.h
index 8825b041f3cf8255d67279489cecde05ffb19204..a41456b8f7a7b344267004930b8e1e74a2168030 100644 (file)
 #include <vector>
 #include <string>
 
-#include <pbd/filesystem.h>
+#include "pbd/filesystem.h"
 
 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