summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/recent_sessions.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-05-08 12:07:33 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-06-29 14:18:10 -0400
commit445d742af187a27f035c120545b4fb3a1e4dadd3 (patch)
tree3a4b3ec19f2dd924206476839e0aa8b03cb6041f /libs/ardour/ardour/recent_sessions.h
parent0365c5cc47f5f7c875714049f58f3a71cc53bdf7 (diff)
save recent templates analogously to recent sessions
Diffstat (limited to 'libs/ardour/ardour/recent_sessions.h')
-rw-r--r--libs/ardour/ardour/recent_sessions.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/ardour/recent_sessions.h b/libs/ardour/ardour/recent_sessions.h
index 03134da6d2..7c4158c9b5 100644
--- a/libs/ardour/ardour/recent_sessions.h
+++ b/libs/ardour/ardour/recent_sessions.h
@@ -30,8 +30,11 @@ namespace ARDOUR {
typedef std::deque<std::pair<std::string,std::string> > RecentSessions;
LIBARDOUR_API int read_recent_sessions (RecentSessions& rs);
+ LIBARDOUR_API int read_recent_templates (std::deque<std::string>& rt);
LIBARDOUR_API int store_recent_sessions (std::string name, std::string path);
+ LIBARDOUR_API int store_recent_templates (const std::string& session_template_full_name);
LIBARDOUR_API int write_recent_sessions (RecentSessions& rs);
+ LIBARDOUR_API int write_recent_templates (std::deque<std::string>& rt);
LIBARDOUR_API int remove_recent_sessions (const std::string& path);
}; // namespace ARDOUR