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

  1. In a derived class, you can mention the fully qualified name of a
  2. member of a base class in the public or protected part of the
  3. derived class declaration.  This changes the access of this member
  4. in the derived class to public or protected, even if the derived
  5. class specifies its base class as private.  This facility does not
  6. let you change the access to the member in the derived class
  7. arbitrarily.  You can only change the access level for a member
  8. back to the access level that it has in the base class.
  9.