X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Frecent_sessions.h;h=2951496849e5187e6f36997b4f007145cfd5c557;hb=452672f78f5f0f9195bfd48398e29b18a8fb1df7;hp=9b1beea4af8f5ddcf433e60c1af5367bebc4a649;hpb=8af0757b61990767f2a85e68f535a5af9976fd79;p=ardour.git diff --git a/libs/ardour/ardour/recent_sessions.h b/libs/ardour/ardour/recent_sessions.h index 9b1beea4af..2951496849 100644 --- a/libs/ardour/ardour/recent_sessions.h +++ b/libs/ardour/ardour/recent_sessions.h @@ -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 @@ -18,22 +18,19 @@ */ #ifndef __ardour_recent_sessions_h__ -#define __ardour_recent_sessions__h__ +#define __ardour_recent_sessions_h__ #include #include #include -using std::deque; -using std::pair; -using std::string; - namespace ARDOUR { - typedef deque > RecentSessions; + typedef std::deque > 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__