continue with MTC debugging
[ardour.git] / libs / ardour / ardour / recent_sessions.h
index 9b1beea4af8f5ddcf433e60c1af5367bebc4a649..e6d2f83bcc24aa3708a71bd978f545e33209d3c8 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);
 }; // namespace ARDOUR