home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / IDIOMS.ZIP / 8-3B.C < prev    next >
C/C++ Source or Header  |  1991-12-04  |  328b  |  18 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.     Class *ted =
  8.     employee->make(
  9.         "ted", 2823763108
  10.     );
  11.     // . . . .
  12.     ted->logTimeWorked(8);
  13.     ted->printPaycheck();
  14.     delete ted;
  15. }
  16.  
  17.  
  18.