home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / hypercar / mactool / thinkcgu.sit / picture ƒ / class.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-09-06  |  596 b   |  27 lines

  1. /*
  2. *   FILE:    class.c
  3. *   AUTHOR:  R.G.
  4. *   CREATED: June 25, 1990
  5. *   
  6. *   define generic class methods
  7. */
  8.  
  9. # include "class.h"
  10.  
  11. /******************************************************************
  12. *   define generic init() method
  13. ******************************************************************/
  14. boolean     Generic_Class::init(void)
  15. {
  16.     return TRUE;
  17. }
  18.  
  19. /******************************************************************
  20. *   define generic destroy() method
  21. ******************************************************************/
  22. boolean     Generic_Class::destroy(void)
  23. {
  24.     return TRUE;
  25. }
  26.  
  27.