From f7d05eee7e83841046e4c4d2352c8ef6deddeb0b Mon Sep 17 00:00:00 2001 From: Michael Andres Date: Fri, 24 Jan 2014 08:18:29 +0100 Subject: [PATCH] Provide access to ostringstream --- zypp/base/String.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zypp/base/String.h b/zypp/base/String.h index c6f589d..a323033 100644 --- a/zypp/base/String.h +++ b/zypp/base/String.h @@ -210,6 +210,9 @@ namespace zypp operator std::string() const { return _str.str(); } + std::ostream & stream() + { return _str; } + std::ostringstream _str; }; -- 2.7.4