source: git/src-cryptopp/pch.h

Last change on this file was e230cb0, checked in by David Stainton <dstainton415@…>, at 2016-10-12T13:27:29Z

Add cryptopp from tag CRYPTOPP_5_6_5

  • Property mode set to 100644
File size: 692 bytes
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.