Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
437 B

  1. // pch.h - written and placed in the public domain by Wei Dai
  2. //! \headerfile pch.h
  3. //! \brief Precompiled header file
  4. #ifndef CRYPTOPP_PCH_H
  5. #define CRYPTOPP_PCH_H
  6. # ifdef CRYPTOPP_GENERATE_X64_MASM
  7. #include "cpu.h"
  8. # else
  9. #include "config.h"
  10. #ifdef USE_PRECOMPILED_HEADERS
  11. #include "simple.h"
  12. #include "secblock.h"
  13. #include "misc.h"
  14. #include "smartptr.h"
  15. #include "stdcpp.h"
  16. #endif
  17. # endif
  18. #endif // CRYPTOPP_PCH_H