Make crossfade convert-to-full and activate/deactivate work across edit groups (...
[ardour.git] / libs / ardour / ardour / recent_sessions.h
index 9b1beea4af8f5ddcf433e60c1af5367bebc4a649..2951496849e5187e6f36997b4f007145cfd5c557 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2004 Paul Davis 
+    Copyright (C) 2004 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 */
 
 #ifndef __ardour_recent_sessions_h__
-#define __ardour_recent_sessions__h__
+#define __ardour_recent_sessions_h__
 
 #include <deque>
 #include <utility>
 #include <string>
 
-using std::deque;
-using std::pair;
-using std::string;
-
 namespace ARDOUR {
-       typedef deque<pair<string,string> > RecentSessions;
+       typedef std::deque<std::pair<std::string,std::string> > RecentSessions;
 
        int read_recent_sessions (RecentSessions& rs);
-       int store_recent_sessions (string name, string path);
+       int store_recent_sessions (std::string name, std::string path);
        int write_recent_sessions (RecentSessions& rs);
+       int remove_recent_sessions (const std::string& path);
 }; // namespace ARDOUR
 
 #endif // __ardour_recent_sessions_h__