![]() |
The following basic C++ types map directly into CORBA types:
- Atomic data types:
- Boolean
- Char
- Double
- Float
- Long
- Octet (hexadecimal)
- Short
- ULong (unsigned long)
- UShort (unsigned short)
- Enum (enumerations)
- LongLong (long long)
- Struct
- ULongLong (unsigned long long)
- WChar (wide character)
All these types are scoped to the class CORBA and must be declared accordingly. Their use in C++ is transparent and straightforward. For example:
CORBA::Short aShortvariable; ... aShortVariable = 12; ...
Related reference... | |
CORBA C++ bindings | |
Parent: CORBA types and business objects | |
CORBA types that return object references | |