Change the SessionDirectory constructor to take a sys::path instead of a string

git-svn-id: svn://localhost/ardour2/trunk@2400 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2007-09-04 07:15:17 +00:00
parent d767a064b6
commit 911c873e56
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ public:
/**
* @param session_path An absolute path to a session directory.
*/
SessionDirectory (const string& session_path);
SessionDirectory (const path& session_path);
/**
* @return the absolute path to the root directory of the session

View file

@ -34,7 +34,7 @@ namespace ARDOUR {
using namespace PBD::sys;
SessionDirectory::SessionDirectory (const string& session_path)
SessionDirectory::SessionDirectory (const path& session_path)
: m_root_path(session_path)
{