add Path::to_s()

This commit is contained in:
Josh Holtrop 2014-06-18 20:07:07 -04:00
parent 8fb1fee7b8
commit 28ed5a30a4

View File

@ -12,6 +12,7 @@ namespace jes
Path(const std::string & path);
Path dirname();
Path join(const Path & other);
const std::string & to_s() { return m_path; }
protected:
void clean();
std::string m_path;