Overview | The def_kind operation returns the kind of the Interface Repository definition. |
Original interface | IRObject Interface |
Exceptions | CORBA::SystemException |
Intended Usage
The def_kind attribute identifies the kind of the Interface Repository definition. The def_kind operation returns the value in this attribute that identifies the definition kind of the object.
Syntax
readonly attribute DefinitionKind def_kind;
Input parameters
None.
Return values
Example
// C++ // assume 'ir_object_ptr' has already been initialized . . . CORBA::IRObject * ir_object_ptr; // query the object to determine the definition kind . . . CORBA::DefinitionKind this_objects_kind; this_objects_kind = ir_object_ptr-> def_kind();