pch.h 727 B

12345678910111213141516171819202122232425262728293031
  1. // pch.h - originally written and placed in the public domain by Wei Dai
  2. /// \file pch.h
  3. /// \brief Precompiled header file
  4. /// \details The precompiled header files are used Windows.
  5. #ifndef CRYPTOPP_PCH_H
  6. #define CRYPTOPP_PCH_H
  7. # ifdef CRYPTOPP_GENERATE_X64_MASM
  8. #include "cpu.h"
  9. # else
  10. #include "config.h"
  11. #ifdef USE_PRECOMPILED_HEADERS
  12. #include "simple.h"
  13. #include "secblock.h"
  14. #include "misc.h"
  15. #include "smartptr.h"
  16. #include "stdcpp.h"
  17. #endif
  18. # endif
  19. // Enable file and line numbers, if available.
  20. // #if defined(_MSC_VER) && defined(_DEBUG) && defined(USE_PRECOMPILED_HEADERS)
  21. // # define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
  22. // # define new DEBUG_NEW
  23. // #endif
  24. #endif // CRYPTOPP_PCH_H