00001 // pch.h - written and placed in the public domain by Wei Dai 00002 00003 //! \headerfile pch.h 00004 //! \brief Precompiled header file 00005 00006 #ifndef CRYPTOPP_PCH_H 00007 #define CRYPTOPP_PCH_H 00008 00009 # ifdef CRYPTOPP_GENERATE_X64_MASM 00010 #include "cpu.h" 00011 00012 # else 00013 #include "config.h" 00014 00015 #ifdef USE_PRECOMPILED_HEADERS 00016 #include "simple.h" 00017 #include "secblock.h" 00018 #include "misc.h" 00019 #include "smartptr.h" 00020 #include "stdcpp.h" 00021 #endif 00022 # endif 00023 00024 #endif // CRYPTOPP_PCH_H