show/hide this revision's text 3 added 154 characters in body

The restrictioon to base class public interface (and by the way, aren't there some 'virtual's missing in what you posted) is what C++ does. If you need to access specific functions that belong only to a derived class, then you need to cast the pointer to that class using dynamic_cast.

If you find the need to use dynamic_cast a lot, then your design is possibly wanting, but it's very difficult to comment on this without kniowing exact details of the business domain you are dealing with.

One possible way round the problem is to provide methods that access components of an account. For example, a base class method GetPortfolio() could returbn a Portfolio object pointer but only for account classes that have Portfolios. For other classes you define their GetPortfolio() method as returning NULL. Once you have the Portfolio pointer, you work on the portfolio interface (which itself may represent a class heirarchy) rather thean the BankAccount.

show/hide this revision's text 2 added 311 characters in body

The restrictioon to base class public interface (and by the way, aren't there some 'virtual's missing in what you posted) is what C++ does. If you need to access specific functions that belong only to a derived class, then you need to cast the pointer to that class using dynamic_cast.

If you find the need to use dynamic_cast a lot, then your design is possibly wanting, but it's very difficult to comment on this without kniowing exact details of the business domain you are dealing with. One possible way round the problem is to provide methods that access components of an account. For example, a base class method GetPortfolio() could returbn a Portfolio object pointer but only for account classes that have Portfolios. For other classes you define their GetPortfolio() method as returning NULL.

show/hide this revision's text 1

The restrictioon to base class public interface (and by the way, aren't there some 'virtual's missing in what you posted) is what C++ does. If you need to access specific functions that belong only to a derived class, then you need to cast the pointer to that class using dynamic_cast.