home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH13 / A13091.TXT < prev    next >
Encoding:
Text File  |  1993-09-20  |  306 b   |  6 lines

  1. In C++, you can define a class that is based on another class.
  2. The class that you define is called the derived class, and it
  3. inherits the properties of the existing class, called the base
  4. class.  Inheritance is the term used to describe how derived
  5. classes share the properties of their base classes.
  6.