/*
 * ENUM: SE_INCLUSION_CHOICE_ENUM
 *
 *   Indicates whether the inclusion test to be performed (when testing objects
 *   against a search boundary) specifies objects completely inside the search
 *   boundary (fully included), or objects that intersect the search boundary
 *   (partly included). Note that SE_PARTLY_INCLUDED is a superset of
 *   SE_FULLY_INCLUDED.
 */
typedef enum
{
SE_FULLY_INCLUDED,
SE_PARTLY_INCLUDED
} SE_INCLUSION_CHOICE_ENUM;
Prev: SE_ID_IMPLEMENTATION_LEVEL_ENUM. Next: SE_ITERATOR. Up:Index