summaryrefslogtreecommitdiff
path: root/libs/ardour/session_utils.cc
blob: 7a833ac73200442c41b55b35afc787664eee90b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#include "pbd/error.h"

#include <stdint.h>
#include "ardour/session_directory.h"

#include "i18n.h"

namespace ARDOUR {

using namespace std;
using namespace PBD;

bool
create_session_directory (const string& session_directory_path)
{
	SessionDirectory sdir(session_directory_path);
	sdir.create();
	return true;
}

} // namespace ARDOUR