Tagged Questions

4
votes
2answers
96 views

How to save `std::vector<uchar>` into `std::ostream`?

We have created and filled some std::vector<uchar> with openCV imencode for example. Now we want to stream it for example into some http_lib which can take some sort of ostream (ostringstream) ...
4
votes
4answers
2k views

How to inherit from std::ostream?

I've been googling around and I just can't find a simple answer to this. And it should be simple, as the STL generally is. I want to define MyOStream which inherits publicly from std::ostream. Let's ...