home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / toolkt21 / c / samples / tp / helper.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-12  |  436 b   |  19 lines

  1. /*
  2.  *    @(#)helper.h 1.3 1/22/92 16:10:18 [1/26/92] (c)IBM Corp. 1992
  3.  *
  4.  * Adapted from the book
  5.  *   Class Construction in C and C++, Object Oriented Fundamentals
  6.  *   by Roger Sessions, Copyright (c) 1992 Prentice Hall.
  7.  * Reprinted with permission.
  8.  */
  9.  
  10. /* File: helper.h */
  11.  
  12. #ifndef HELPER_FILE
  13. #define HELPER_FILE
  14.  
  15. #include <somobj.h>
  16. void shouldHaveOverridden(SOMObject *thisObject, char *methodName);
  17. #endif
  18.  
  19.