home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / Found / Layer / Include / FWFound.hpp next >
Encoding:
Text File  |  1995-11-08  |  1.6 KB  |  95 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWFound.hpp
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    (c) 1993, 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWFOUND_HPP
  11. #define FWFOUND_HPP
  12.  
  13. #ifndef FW_USE_PRECOMPILED_HEADERS
  14. #define FW_USE_PRECOMPILED_HEADERS 0
  15. #endif
  16.  
  17. // ----- Environment definition file must be first -----
  18.  
  19. #ifndef FWENVDEF_H
  20. #include "FWEnvDef.h"
  21. #endif
  22.  
  23. #if FW_USE_PRECOMPILED_HEADERS
  24.  
  25. // ----- C++ runtime Includes -----
  26.  
  27. #include <stddef.h>
  28.  
  29. // ----- Platform Includes -----
  30.  
  31. #if defined(FW_BUILD_WIN) && !defined(_INC_WINDOWS)
  32. #include <Windows.h>
  33. #endif
  34.  
  35. #if defined(FW_BUILD_WIN) && !defined(_INC_WINDOWSX)
  36. #include <WindowsX.h>
  37. #endif
  38.  
  39. #ifdef FW_BUILD_MAC
  40. #include "FWUniHdr.h"
  41. #endif
  42.  
  43. // ----- ODF Includes -----
  44.  
  45. // We consider precompiling headers in this layer for this layer aggressive,
  46. // as opposed to just precompiling things this layer uses.
  47.  
  48. #ifdef FW_AGGRESSIVE_PRECOMPILE
  49.  
  50. #ifndef FWCOMMON_H
  51. #include "FWCommon.h"
  52. #endif
  53.  
  54. #ifndef FWDEBUG_H
  55. #include "FWDebug.h"
  56. #endif
  57.  
  58. #ifndef FWRUNTYP_H
  59. #include "FWRunTyp.h"
  60. #endif
  61.  
  62. #ifndef FWEXCLIB_H
  63. #include "FWExcLib.h"
  64. #endif
  65.  
  66. #ifndef FWMEMORY_H
  67. #include "FWMemory.h"
  68. #endif
  69.  
  70. #ifndef FWFOUNDU_H
  71. #include "FWFoundU.h"
  72. #endif
  73.  
  74. #ifndef FWSTREAM_H
  75. #include "FWStream.h"
  76. #endif
  77.  
  78. #ifndef FWCOLLEC_H
  79. #include "FWCollec.h"
  80. #endif
  81.  
  82. #ifndef FWNOTIFN_H
  83. #include "FWNotifn.h"
  84. #endif
  85.  
  86. #ifndef FWSTRING_H
  87. #include "FWString.h"
  88. #endif
  89.  
  90. #endif // FW_AGGRESSIVE_PRECOMPILE
  91.  
  92. #endif // FW_USE_PRECOMPILED_HEADERS
  93.  
  94. #endif // FWFOUND_HPP
  95.