IoTeX client
reflection_helper.h
1#ifndef IOTEX_REFLECTION_HELPER_H
2#define IOTEX_REFLECTION_HELPER_H
3
4namespace iotex
5{
6namespace reflection
7{
11enum class CppType
12{
13 UINT8,
14 UINT16,
15 UINT32,
16 UINT64,
17 BIGINT,
18 BOOLEAN,
19 C_STRING,
20 STRING,
21 OBJECT,
22 BYTES,
23 ARRAY // JSON array
24};
25} // namespace reflection
26} // namespace iotex
27
28#endif
Definition: abi.h:12