Next: , Previous: C++ Array, Up: C++ mappings


6.2.7 Mapping for structure types

GenoM IDL structures map directly onto C++ structs. Note that these structures may potentially include padding.

For instance, the following IDL:

      struct s {
         long a;
         long b;
      };

would map into

      struct s {
         int32_t a;
         int32_t b;
      };