#include <iostream>
#include <string>
struct Printable abstract
{
friend std::ostream& operator<<(std::ostream& cout, const Printable& obj)
{
obj.print(cout);
return cout;
}
virtual void print(std::ostream& cout) const = 0;
};
struct VirtualBase abstract : public Printable
{
//stuff
};
struct Named abstract : public Printable
{
std::string name;
void print(std::ostream& cout) const
{
cout << "Name: " << name;
}
};
struct DerivedA : public VirtualBase
{
void print(std::ostream& cout) const
{
cout << "DerivedA";
}
};
struct DerivedB : public VirtualBase, public Named
{
void print(std::ostream& cout) const
{
cout << "DerivedB";
dynamic_cast<const Named*>(this)->print(cout);
//Is there a better way to call Named::print?
}
};
Since DerivedB inherits VirtualBase and Named, and both of those inherit Printable, I can't use DerivedB with cout. What would be the best way to have Printable support on multiple layers of the inheritance hierarchy? Also, what would be the simplest way to call Named::print in a derived class's print?
abstractin your struct declarations? That isn't valid C++. – David Brown Mar 5 '12 at 23:21