CS202   3- ‹#›
Multiple Inheritance
nTo specify a derived class when there is more than one base class, we add each direct base class name as part of the derived class' header. This is the same as with single inheritance, except there is a comma separated list of base classes.
nclass assets : public savings, public equity {
n  public:
n    ...
n};
n
nThe definition cannot be cyclical.
nA direct base class cannot be specified
n    more than once for any derived class.