summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/session_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/session_utils.h')
-rw-r--r--libs/ardour/ardour/session_utils.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/libs/ardour/ardour/session_utils.h b/libs/ardour/ardour/session_utils.h
new file mode 100644
index 0000000000..8a9f6f584c
--- /dev/null
+++ b/libs/ardour/ardour/session_utils.h
@@ -0,0 +1,26 @@
+
+#ifndef __ardour_session_utils_h__
+#define __ardour_session_utils_h__
+
+#include <string>
+
+namespace ARDOUR {
+
+using std::string;
+
+int find_session (string str, string& path, string& snapshot, bool& isnew);
+
+/**
+ * Create a SessionDirectory at the path specified by
+ * session_directory_path, this includes all subdirectories.
+ *
+ * @return true if the session directory was able to be created
+ * or if it already existed, false otherwise.
+ *
+ * @see SessionDirectory
+ */
+bool create_session_directory (const string& session_directory_path);
+
+};
+
+#endif