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