home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / CTUTOR / PERSON.CPP < prev    next >
Text File  |  1993-12-01  |  325b  |  12 lines

  1.                                      // Chapter 11 - Program 2
  2. #include "iostream.h"
  3. #include "person.hpp"
  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.