-
Notifications
You must be signed in to change notification settings - Fork 0
/
typeHelper.cpp
57 lines (45 loc) · 997 Bytes
/
typeHelper.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "typeHelper.h"
template <>
MW::mxClassID typeHelper<std::uint8_t>() {
return(MW::mxUINT8_CLASS);
}
template <>
MW::mxClassID typeHelper<std::int8_t>() {
return(MW::mxINT8_CLASS);
}
template <>
MW::mxClassID typeHelper<std::uint16_t>() {
return(MW::mxUINT16_CLASS);
}
template <>
MW::mxClassID typeHelper<std::int16_t>() {
return(MW::mxINT16_CLASS);
}
template <>
MW::mxClassID typeHelper<std::uint32_t>() {
return(MW::mxUINT32_CLASS);
}
template <>
MW::mxClassID typeHelper<std::int32_t>() {
return(MW::mxINT32_CLASS);
}
template <>
MW::mxClassID typeHelper<std::uint64_t>() {
return(MW::mxUINT64_CLASS);
}
template <>
MW::mxClassID typeHelper<std::int64_t>() {
return(MW::mxINT64_CLASS);
}
template <>
MW::mxClassID typeHelper<float>() {
return(MW::mxSINGLE_CLASS);
}
template <>
MW::mxClassID typeHelper<double>() {
return(MW::mxDOUBLE_CLASS);
}
template <>
MW::mxClassID typeHelper<char>() {
return(MW::mxCHAR_CLASS);
}