/*
 * TYPEDEF: SE_TOKEN_SET
 *
 *   A special type of field within a SEDRIS class, which can contain multiple
 *   values. Currently, Tokens are defined as various enumerated types within
 *   SEDRIS (e.g., enumerators from SE_POLYGON_FLAGS_ENUM,
 *   SE_PRESENTATION_DOMAIN_ENUM).
 *
 *   Functions to manipulate and query Token Sets are declared here. Token Sets
 *   should never be directly manipulated by the user, but instead should be
 *   accessed through the Token Set functions, because the underlying
 *   definition of a Token Set may change in the future, but the functions
 *   will still work even when the definition changes.
 *
 *   To add a Token to a Token Set, cast the enumerated value of the Token to
 *   an int32 and call the SE_AddTokenToSet() function. To remove a Token from
 *   a Token Set, call SE_RemoveTokenFromSet().  To test to see if a Token
 *   is present within a Token Set, call SE_TestInclusionInSet().
 */
typedef SE_UINT32 SE_TOKEN_SET;
Prev: SE_TOKEN_ENUM. Next: SE_TYPE_CLASSIFICATION_ENUM. Up:Index