home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH01 / A01165.TXT < prev    next >
Encoding:
Text File  |  1993-09-30  |  263 b   |  5 lines

  1. When you define a class in C++, you specify which members of the
  2. class are visible to the client code.  Members declared to be
  3. "private" are hidden from the client code.  Members declared to be
  4. "public" form the interface between a class and the client code.
  5.