diff --git a/src/lib/include/jes/Path.h b/src/lib/include/jes/Path.h index a20aa78..290e135 100644 --- a/src/lib/include/jes/Path.h +++ b/src/lib/include/jes/Path.h @@ -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;