/*
 * STRUCT: SE_STATE_PARAMETERS
 *
 *   Used to build up the SE_HIERARCHY_ORDER_PARAMETERS data structure.
 *
 *   This data structure controls the traversal order of the branches
 *   from a <State Related Features> or <State Related Geometry> object
 *   when encountered by a Component Iterator.  For the set of branches
 *   to be traversed, the order of that traversal will be defined by the
 *   state_array in this structure.  Any branches that are traversed
 *   but are not mentioned in this array will be traversed in a random
 *   order after all of the branches that are mentioned in this array
 *   are traversed.
 *
 *   See the definitions of the <State Related Features>,
 *   <State Related Geometry>, <Base State Data>, <Feature State Data>,
 *   and <Geometry State Data> for more details.
 */
typedef struct
{
SE_BASE_STATE_DATA_FIELDS state_data;
} SE_STATE_PARAMETERS;
Prev: SE_STATE_ENTRY. Next: SE_STATE_SELECT_PARAMETERS. Up:Index