00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #pragma once
00018
00019 #ifdef __cplusplus
00020
00021 #ifdef _MSC_VER
00022
00023 #if (_MSC_VER >= 1600) // VC++ 10 (aka 2010)
00024 #define AI_HAS_NULLPTR
00025 #define AI_HAS_STATIC_ASSERT
00026 #define AI_HAS_RVALUE_REFERENCES
00027 #define AI_HAS_LAMBDAS
00028 #endif
00029
00030 #if (_MSC_FULL_VER >= 180020827) // VC++ 12 (aka 2013)
00031 #define AI_HAS_DELETED_FUNCTIONS
00032 #define AI_HAS_EXPLICIT_CONVERSION_OPERATORS
00033 #endif
00034
00035 #if (_MSC_FULL_VER >= 190023026) // VC++ 14 (aka 2015)
00036
00037
00038 #define AI_HAS_DEFAULTED_FUNCTIONS
00039 #define AI_HAS_NOEXCEPT
00040 #define AI_HAS_RETURN_TYPE_DEDUCTION
00041 #endif
00042
00043 #endif // _MSC_VER
00044
00045 #endif // __cplusplus