Since SIDL enumerations map to C++ enumerations, their use is fairly
straight-forward. The appropriate header file must be included.
The naming convention for enumerations is for enums to be the
name space followed by the specified enumeration type as the name of
the enumeration. A given enumeration value name starts with
the enumeration type and the name of the constant, with an underscore as
the separator.
For example, a variable can be assigned the blue constant for
the color enumeration of the sample in
Subsection 5.3 as follows
#include "enums_color.hxx" /* ...deleted lines... */ enums::color myColor = enums::color_blue;