Index: property_tree/string_path.hpp =================================================================== --- property_tree/string_path.hpp (révision 86382) +++ property_tree/string_path.hpp (copie de travail) @@ -125,6 +125,9 @@ /// Get the separator used by this path. char_type separator() const { return m_separator; } + /// Get the value of this path. + String const& value() const { return m_value; } + std::string dump() const { return detail::dump_sequence(m_value); }