I want to define MyOStream which inherits publicly from std::ostream. Let's say I want to implement my own ofstream.

How can this be done? I'll be glad for any help, coded example or any relevant link...

thanks!

link|improve this question

0% accept rate
1  
What exactly are you trying to accomplish? – Billy ONeal Dec 19 '10 at 9:41
feedback

2 Answers

I don't understand exactly what you're trying to accomplish here. User code shouldn't inherit from the streams themselves, as the streams are intended to provide a generalized locale specific conversion/"stringizing" facility. If you're trying to use an ostream which can write to a new buffer location (i.e. a gzip stream), then one should generally inherit from basic_streambuf instead, which allows you to use the existing iostream conversion facilities but will allow you to redirect their input/output.

If you want to learn the ins and outs of how iostream itself operates, the best book I've heard about the subject is Standard C++ IOStreams and Locales by Angelika Langer and Klaus Kreft. I can't myself vouch for the book because I have yet to get my copy (it is next on my list), but you can find several recommendations for it here on StackOverflow.

You also probably want to take a peek at boost::iostreams, which provides some helpers for anyone wishing to customize the behavior of the iostream system.

link|improve this answer
feedback
class YourStream : public std::ostream
{
public:
    YourStream() : std::ostream(pointer to your favorite buffer)
    {
    }
};

Links? Google for them, e.g. found this. For the exact details refer to a good book or to the standard.

link|improve this answer
One should probably use virtual inheritance when inheriting from std::ostream. – Billy ONeal Dec 19 '10 at 9:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.