Tagged Questions

3
votes
1answer
293 views

inheriting ostream and streambuf problem with xsputn and overflow

I have been doing research on creating my own ostream and along with that a streambuf to handle the buffer for my ostream. I actually have most of it working, I can insert (<<) into my stream ...
3
votes
3answers
3k views

How do I create my own ostream/streambuf?

For educational purposes I want to create a ostream and stream buffer to do: fix endians when doing << myVar; store in a deque container instead of using std:cout or writing to a file log ...
2
votes
4answers
658 views

Deriving streambuf or basic_ostringstream?

I want to derive a stringstream so that I can use the operator<< to construct a message which will then be thrown. The API would look like: error("some text") << " more text " << 42 ...