Next: C++ Basic type, Previous: C++ Scoped name, Up: C++ mappings
GenoM IDL constants are mapped to a C++ constant. For instance, the following IDL:
C++
const long longint = 1; const string str = "string example";
would map into
const int32_t longint = 1; const std::string str = "string example";