From 28ed5a30a4e1985a4fa775f32d2ca78ed9f88c90 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Wed, 18 Jun 2014 20:07:07 -0400 Subject: [PATCH] add Path::to_s() --- src/lib/include/jes/Path.h | 1 + 1 file changed, 1 insertion(+) 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;