PostalPrefix.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. // This file is automatically included as part of every file in the project.
  19. //
  20. // Thie file sets includes the common settings and any settings that are
  21. // specific to NON-DEBUG mode.
  22. //
  23. ////////////////////////////////////////////////////////////////////////////////
  24. #ifndef POSTALPREFIX_H
  25. #define POSTALPREFIX_H
  26. // We normally want to include the precompiled header file, except when this
  27. // prefix file is being included by the file that actually generates the
  28. // precompiled header. Only that particular file will define this macro.
  29. #ifndef POSTAL_PRECOMPILING_NOW
  30. #include "PostalPrecomp"
  31. #endif
  32. // Include common settings
  33. #include "PostalPrefixCommon.h"
  34. // SmartHeap Stuff. Normally, we define these in debug mode and comment them out otherwise.
  35. #define NOSHMALLOC
  36. //#define MEM_DEBUG
  37. //#define DEFINE_NEW_MACRO
  38. // Define this for debug mode, comment it out otherwise.
  39. //#define _DEBUG
  40. #endif // POSTALPREFIX_H
  41. ////////////////////////////////////////////////////////////////////////////////
  42. // EOF
  43. ////////////////////////////////////////////////////////////////////////////////