Re: making stringstream empty
mthread wrote:
> Hi,
> I am using a variable of type stringstream in my application. I
> am adding some information in the stream. I would like to know what is
> the method to make the stream empty. Thanx in advance.
ss.str(std::string());
|