home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Found / ODUtils / FWODUtils.hpp < prev    next >
Encoding:
Text File  |  1996-09-17  |  1.1 KB  |  50 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWODUtils.hpp
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. // This file is used to precompile headers to build the OpenDoc Utilities used by ODF
  11.  
  12. #define ODDebug 0
  13.  
  14. #include "ODConfig.h"
  15.  
  16. #pragma once on
  17.  
  18. // Headers for OpenDoc utilities. Several of these need to be
  19. // included before ODTypes.h to work their magic.
  20.  
  21. #define _CRAWL_        // this causes 'crawl.h' to not be included in ODDebug.h
  22.  
  23. #include <AltPoint.h>
  24. #include <AltPoly.h>
  25. #include <Except.h>
  26. #include <ODDebug.h>
  27.  
  28. // Disable OpenDoc Utilities debugging macro's
  29.  
  30. #undef     WARN
  31. #define WARN
  32. #undef     ASSERT
  33. #define ASSERT(x,y)
  34. #undef     ASSERTM
  35. #define ASSERTM(x,y,z)
  36. #undef    WASSERT
  37. #define WASSERT(x)
  38. #undef     WASSERTM
  39. #define WASSERTM(x,y)
  40.  
  41. #include <ODNew.h>
  42. //#include <UseRsrcM.h>
  43.  
  44. // Central headers for OpenDoc types and part handler API:
  45.  
  46. #include <ODTypes.h>
  47. #include <Part.xh>
  48.  
  49. #include "FWPoint.h"
  50.