summaryrefslogtreecommitdiff
path: root/stdcpp.h
blob: de1ea9e422da684046a242ba20a5d59eb91a3c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#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>
#include <iostream>
#include <fstream>
#include <locale>

// re-disable this
#pragma warning(disable: 4231)
#endif

#if defined(_MSC_VER) && defined(_CRTAPI1)
#define CRYPTOPP_MSVCRT6
#endif

#endif