s/ParamID/Parameter/
[ardour.git] / libs / ardour / ardour / session_utils.h
1
2 #ifndef __ardour_session_utils_h__
3 #define __ardour_session_utils_h__
4
5 #include <string>
6
7 namespace ARDOUR {
8
9 using std::string;
10
11 int find_session (string str, string& path, string& snapshot, bool& isnew);
12
13 /**
14  * Create a SessionDirectory at the path specified by
15  * session_directory_path, this includes all subdirectories.
16  *
17  * @return true if the session directory was able to be created
18  * or if it already existed, false otherwise.
19  *
20  * @see SessionDirectory
21  */
22 bool create_session_directory (const string& session_directory_path);
23
24 };
25
26 #endif