Stub implementation of LV2 persist extension.
[ardour.git] / libs / ardour / ardour / recent_sessions.h
index e32b67bcd853f2d3259d6352e1d5746fd31deffc..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
 #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