29 #if defined (_MSC_VER) 31 typedef signed char Int8;
32 typedef unsigned char UInt8;
34 typedef signed short Int16;
35 typedef unsigned short UInt16;
37 typedef signed int Int32;
38 typedef unsigned int UInt32;
40 typedef signed long long Int64;
41 typedef unsigned long long UInt64;
43 #elif defined (__GNUC__) 45 typedef signed char Int8;
46 typedef unsigned char UInt8;
48 typedef signed short Int16;
49 typedef unsigned short UInt16;
51 #if defined (__LP64__) 53 typedef signed int Int32;
54 typedef unsigned int UInt32;
56 typedef signed long Int64;
57 typedef unsigned long UInt64;
61 typedef signed int Int32;
62 typedef unsigned int UInt32;
64 typedef signed long long Int64;
65 typedef unsigned long long UInt64;
75 Cannot identify compiler toolset to define integral types. \ 76 Please contact support@onixs.biz on further assistance. 94 operator Value()
const 284 toStr(str, constant());
300 toStr(str, constant);
Type Value
Type of the constant.
std::string toStr(IntegralConstant< Type, Constant > constant)
Serializes given constant into a string.
#define ONIXS_CMESTREAMLINEDMDH_NAMESPACE_END
#define ONIXS_CMESTREAMLINEDMDH_EXPORTED
Value operator()() const
Returns value of the constant.
static const Value value()
Returns value of the constant.
#define ONIXS_CMESTREAMLINEDMDH_NAMESPACE_BEGIN