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

  1. The access that a derived class has to a base class member depends
  2. on two things:  the access level of the base class member in the
  3. base class, and whether the inheritance is public, protected, or
  4. private.  For example, if a member has an access level of
  5. protected in a base class, and the derived class has public
  6. inheritance, the member will have an access level of protected in
  7. the derived class as well.
  8.