You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
461 B
28 lines
461 B
14 years ago
|
#ifndef CRYPTOPP_STDCPP_H
|
||
|
#define CRYPTOPP_STDCPP_H
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <assert.h>
|
||
|
#include <limits.h>
|
||
|
#include <memory>
|
||
|
#include <string>
|
||
|
#include <exception>
|
||
|
#include <typeinfo>
|
||
|
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
#include <string.h> // CodeWarrior doesn't have memory.h
|
||
|
#include <algorithm>
|
||
|
#include <map>
|
||
|
#include <vector>
|
||
|
|
||
|
// re-disable this
|
||
|
#pragma warning(disable: 4231)
|
||
|
#endif
|
||
|
|
||
|
#if defined(_MSC_VER) && defined(_CRTAPI1)
|
||
|
#define CRYPTOPP_MSVCRT6
|
||
|
#endif
|
||
|
|
||
|
#endif
|