[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
A typecode is a type, whose values represent the types of other things. It is a meta-type. For example, a given typecode might have the value of XXX, which represents the type “float”. In details of XXX are not particularly important.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
Yes.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
This depends on the language mapping. For example, in C++, there is a const instance of the TypeCode class for each of the built-in types.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
Sticking with the above C++ example, there is a const instance of the TypeCode class for each user type. The IDL compiler generates this.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
An interface’s typecode can be determined by calling _get_interface() on the object reference (IOR). This will return an InterfaceDef (Interface Definition) reference from the Interface Repository (IFR).
The typecode for things like float and string are well known in the language mapping. The typecode for things like structs are generated by the IDL compiler.
An any supports a call to determine its typecode. Note, the complete support for this requires Dynamic Anys.
[ Top | Bottom | Previous section | Next section ]