home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / Blitting Class Library / Blitting Headers / BCL.h next >
Encoding:
Text File  |  1995-10-29  |  1.1 KB  |  55 lines  |  [TEXT/CWIE]

  1. // BCL.h, all of the headers for the Blitting Class Library. Intended to be used by people
  2. //    who are just starting to use BCL and do not know which headers to #include. It is
  3. //    recommended that this header is NOT to be used as a crutch to make #includes at the
  4. //    top of a program look pretty (unless it is for academic examples)... compiles will be
  5. //    much slower with this header.
  6.  
  7. // copyright © 1995, Macneil Shonle. All rights reserved.
  8.  
  9. #ifndef __PIXELTYPES__
  10. #include <PixelTypes.h>
  11. #endif
  12.  
  13. #ifndef __MMUMODESWAPPER__
  14. #include <MMUModeSwapper.h>
  15. #endif
  16.  
  17. #ifndef __GWORLDSETTER__
  18. #include <GWorldSetter.h>
  19. #endif
  20.  
  21. #ifndef __BUFFERACCESSOR__
  22. #include <BufferAccessor.h>
  23. #endif
  24.  
  25. #ifndef __GWORLDACCESSOR__
  26. #include <GWorldAccessor.h>
  27. #endif
  28.  
  29. #ifndef __VIDEOACCESSOR__
  30. #include <VideoAccessor.h>
  31. #endif
  32.  
  33. #ifndef __WINDOWACCESSOR__
  34. #include <WindowAccessor.h>
  35. #endif
  36.  
  37. #ifndef __IMAGECOPIER__
  38. #include <ImageCopier.h>
  39. #endif
  40.  
  41. #ifndef __SECUREMACPORT__
  42. #include <SecureMacPort.h>
  43. #endif
  44.  
  45. #ifndef __SECUREGWORLD__
  46. #include <SecureGWorld.h>
  47. #endif
  48.  
  49. #ifndef __SECURECGRAFPORT__
  50. #include <SecureCGrafPort.h>
  51. #endif
  52.  
  53. #ifndef __SECUREWINDOWREF__
  54. #include <SecureWindowRef.h>
  55. #endif