Better wording for transaction fee notification messages
[novacoin.git] / src / cryptopp / stdcpp.h
1 #ifndef CRYPTOPP_STDCPP_H
2 #define CRYPTOPP_STDCPP_H
3
4 #include <stddef.h>
5 #include <assert.h>
6 #include <limits.h>
7 #include <memory>
8 #include <string>
9 #include <exception>
10 #include <typeinfo>
11
12
13 #ifdef _MSC_VER
14 #include <string.h>     // CodeWarrior doesn't have memory.h
15 #include <algorithm>
16 #include <map>
17 #include <vector>
18
19 // re-disable this
20 #pragma warning(disable: 4231)
21 #endif
22
23 #if defined(_MSC_VER) && defined(_CRTAPI1)
24 #define CRYPTOPP_MSVCRT6
25 #endif
26
27 #endif