I have a function that aceppts a const Element, and I want to stream it to
an std::ostringstream. But I can't.
Can we change the stream output operator to this:
friend std::ostream& operator <<( std::ostream& out, const Node& base )
{
out << *base.GetTiXmlPointer();
return out;
}
Original issue reported on code.google.com by tim.wei...@gmail.com on 18 Oct 2008 at 6:00
Original issue reported on code.google.com by
tim.wei...@gmail.com
on 18 Oct 2008 at 6:00