RSPiX.cpp 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2016 RWS Inc, All Rights Reserved
  4. //
  5. // This program is free software; you can redistribute it and/or modify
  6. // it under the terms of version 2 of the GNU General Public License as published by
  7. // the Free Software Foundation
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License along
  15. // with this program; if not, write to the Free Software Foundation, Inc.,
  16. // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. //
  18. // RSPiX.cpp
  19. // Project: Nostril (aka Postal)
  20. //
  21. // This module implements the precompiled header.
  22. //
  23. // History:
  24. // 01/26/97 JMI Started.
  25. //
  26. ////////////////////////////////////////////////////////////////////////////////
  27. //
  28. // Things included in this file will be in the precompiled header.
  29. // For a CPP to use the precompiled header it must:
  30. //
  31. // - All headers included here must be included in the CPP in the same
  32. // order they are here and must be the first includes in that CPP.
  33. // - Check the 'Use precompiled header file' option in the Settings|C/C++|
  34. // Precompiled Headers settings dialog with 'Through header:' set to RSPiX.h.
  35. //
  36. //
  37. // If your CPP does not like utilizing the precompiled header (i.e., it does
  38. // not include these headers or it does not include them first):
  39. //
  40. // - Check the 'Not using precompiled headers' option set in the Settings|C/C++|
  41. // Precompiled Headers settings dialog.
  42. //
  43. //
  44. // Reasons to use this precompiled header:
  45. // - On a P90/64M, using this precompiled header for Postal sped compile time
  46. // down to 1/4 that without it.
  47. //
  48. // Reasons to not use this precompiled header:
  49. // - Sometimes you may need to include another header before the ones included
  50. // here. For example <malloc.h>, which, b/c of SmartHeap, must be included
  51. // before RSPiX.h.
  52. // - If you don't need to include the headers included here, you probably don't
  53. // need to precompile your headers.
  54. //
  55. ////////////////////////////////////////////////////////////////////////////////
  56. ////////////////////////////////////////////////////////////////////////////////
  57. // RSPiX includes.
  58. ////////////////////////////////////////////////////////////////////////////////
  59. #include "RSPiX.h"
  60. ////////////////////////////////////////////////////////////////////////////////
  61. // Postal includes.
  62. ////////////////////////////////////////////////////////////////////////////////
  63. ////////////////////////////////////////////////////////////////////////////////
  64. // EOF
  65. ////////////////////////////////////////////////////////////////////////////////