home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / info / c_tutora / person.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-20  |  322 b   |  12 lines

  1.                                      // Chapter 11 - Program 2
  2. #include <iostream.h>
  3. #include "person.h"
  4.  
  5.             // This method should never be called.  If it is ever
  6.             // called, it is considered an error.
  7. void
  8. person::display(void)
  9. {
  10.    cout << "person::display - missing subclass method\n";
  11. }
  12.