Tagged Questions
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 ...
1
vote
5answers
356 views
Inheriting and overriding ostream operator in C++
I've been trying to find an answer to this, but no one seems to have exactly the same problem as I do.
I am working with several derived classes. The ostream operator << for each of these ...
1
vote
2answers
401 views
inherit std::ostream
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 ...
0
votes
1answer
81 views
ostream operator overloading - inheritance
I have a base class called Item:
#ifndef ITEM_H
#define ITEM_H
#include <ostream>
class Item {
public:
virtual ~Item() {}
virtual void print(std::ostream& out) const {}
friend ...