Tagged Questions

3
votes
3answers
1k views

Have a C++ Class act like a custom ostream, sstream

I have a C++ class MyObject and I want to be able to feed this data like I would to a osstream (but unlike a direct sstream, have the incoming data be formatted a special way). I can't seem to figure ...
0
votes
1answer
93 views

Convert an ostream into a string (not a sstream)

I specifically need to convert an ostream into a string. To be more precise, I have a function: ostream& f(ostream& out); (This function is mainly used for a polymorphic overcharge of the ...
0
votes
1answer
206 views

Custom ostream without flushing?

Currently I create an ostream with a custom stringbuf derived object, but it uses sync() to print text on the screen. Is there a way to avoid having to flush it? I really want to do logStream << ...