Line | |
---|
1 | // pch.h - written and placed in the public domain by Wei Dai |
---|
2 | |
---|
3 | //! \headerfile pch.h |
---|
4 | //! \brief Precompiled header file |
---|
5 | |
---|
6 | #ifndef CRYPTOPP_PCH_H |
---|
7 | #define CRYPTOPP_PCH_H |
---|
8 | |
---|
9 | # ifdef CRYPTOPP_GENERATE_X64_MASM |
---|
10 | #include "cpu.h" |
---|
11 | |
---|
12 | # else |
---|
13 | #include "config.h" |
---|
14 | |
---|
15 | #ifdef USE_PRECOMPILED_HEADERS |
---|
16 | #include "simple.h" |
---|
17 | #include "secblock.h" |
---|
18 | #include "misc.h" |
---|
19 | #include "smartptr.h" |
---|
20 | #include "stdcpp.h" |
---|
21 | #endif |
---|
22 | # endif |
---|
23 | |
---|
24 | // Enable file and line numbers, if available. |
---|
25 | // #if defined(_MSC_VER) && defined(_DEBUG) && defined(USE_PRECOMPILED_HEADERS) |
---|
26 | // # define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__) |
---|
27 | // # define new DEBUG_NEW |
---|
28 | // #endif |
---|
29 | |
---|
30 | #endif // CRYPTOPP_PCH_H |
---|
Note: See
TracBrowser
for help on using the repository browser.