2017-01-27 12:05:45 +00:00
|
|
|
// pch.h - originally written and placed in the public domain by Wei Dai
|
2015-11-18 20:32:28 +00:00
|
|
|
|
|
|
|
//! \headerfile pch.h
|
|
|
|
//! \brief Precompiled header file
|
|
|
|
|
2015-11-05 06:59:46 +00:00
|
|
|
#ifndef CRYPTOPP_PCH_H
|
|
|
|
#define CRYPTOPP_PCH_H
|
|
|
|
|
2015-11-18 20:32:28 +00:00
|
|
|
# ifdef CRYPTOPP_GENERATE_X64_MASM
|
2015-11-05 06:59:46 +00:00
|
|
|
#include "cpu.h"
|
|
|
|
|
2015-11-18 20:32:28 +00:00
|
|
|
# else
|
2015-11-05 06:59:46 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#ifdef USE_PRECOMPILED_HEADERS
|
|
|
|
#include "simple.h"
|
|
|
|
#include "secblock.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "smartptr.h"
|
2015-11-18 20:32:28 +00:00
|
|
|
#include "stdcpp.h"
|
2015-11-05 06:59:46 +00:00
|
|
|
#endif
|
2015-11-18 20:32:28 +00:00
|
|
|
# endif
|
2015-11-05 06:59:46 +00:00
|
|
|
|
2016-10-02 07:10:06 +00:00
|
|
|
// Enable file and line numbers, if available.
|
|
|
|
// #if defined(_MSC_VER) && defined(_DEBUG) && defined(USE_PRECOMPILED_HEADERS)
|
|
|
|
// # define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
|
|
|
|
// # define new DEBUG_NEW
|
|
|
|
// #endif
|
|
|
|
|
2015-11-18 20:32:28 +00:00
|
|
|
#endif // CRYPTOPP_PCH_H
|