home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Arashi 1.1.1 / source code / For your think c folder / Misc / cplusminusutil.h next >
Encoding:
C/C++ Source or Header  |  1995-07-14  |  701 b   |  31 lines  |  [TEXT/KAHL]

  1. /*/
  2.      Project Arashi: cplusminusutil.h
  3.      Major release: Version 1.1d2, 9/5/95
  4.  
  5.      Last modification: Friday, July 14, 1995, 0:34
  6.      Created: Thursday, October 13, 1994, 11:46
  7.  
  8.      Copyright © 1994-1995, Juri Munkki
  9. /*/
  10.  
  11. #ifndef __CPLUSMINUSUTIL__
  12. #define __CPLUSMINUSUTIL__
  13. #include <stddef.h>
  14. /*
  15. **    Because the disk init package is not used very
  16. **    often, it can be used to determine if MacHeaders
  17. **    has been pre-included.    
  18. */
  19. #ifndef __DISKINIT__
  20. #define NO_PRECOMPILED_HEADERS
  21. #endif
  22.  
  23. // for MPW only
  24. #define NO_INHERITED_IN_LANGUAGE_false
  25.  
  26. #ifdef    NO_INHERITED_IN_LANGUAGE
  27. #define    MAKEINHERIT(superclass)    typedef superclass inherited;
  28. #else
  29. #define    MAKEINHERIT(superclass)
  30. #endif
  31. #endif