c++ Programming Glossary: peach
Deriving an abstract class from concrete class http://stackoverflow.com/questions/310408/deriving-an-abstract-class-from-concrete-class Now someone comes and derives an abstract class Peach from Apple. It's abstract because it introduces a new pure virtual.. it introduces a new pure virtual function. The user of Peach is now forced to derive from it and define this new function... Apple public virtual void MakePie more stuff here class Peach public Apple public virtual void MakeDeliciousDesserts 0 more..
|