home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / IDIOMS.ZIP / 8-3A.C < prev    next >
C/C++ Source or Header  |  1991-12-04  |  339b  |  16 lines

  1. /* Copyright (c) 1992 by AT&T Bell Laboratories. */
  2. /* Advanced C++ Programming Styles and Idioms */
  3. /* James O. Coplien */
  4. /* All rights reserved. */
  5.  
  6. int main() {
  7.    Employee *ted =
  8.        new Employee(
  9.          "ted", 2823763108
  10.        );
  11.    // . . . .
  12.    ted->logTimeWorked(8);
  13.    ted->printPaycheck();
  14.    delete ted;
  15. }
  16.