Go to the source code of this file.
|
| Bentley |
| The Bentley namespace contains types defined by the Bentley Library.
|
|
| Bentley::DgnPlatform |
| The DgnPlatform namespace contains types defined by the DgnPlatform.
|
|
|
enum | DgnECInstanceStatus {
DGNECINSTANCESTATUS_Success = SUCCESS,
DGNECINSTANCESTATUS_InstanceIsStale = 1,
DGNECINSTANCESTATUS_InstanceIsDeletedOrUndone = 2,
DGNECINSTANCESTATUS_InvalidElementRef = 3,
DGNECINSTANCESTATUS_InstanceIsAlreadyAsleep = 4,
DGNECINSTANCESTATUS_IncompatibleWipInstance = 5,
DGNECINSTANCESTATUS_UnableToAddInstance = 6,
DGNECINSTANCESTATUS_NoInstanceFound = 7,
DGNECINSTANCESTATUS_InvalidInstance = 8,
DGNECINSTANCESTATUS_UnableToUpdateInstance = 9,
DGNECINSTANCESTATUS_XAttributeHasBeenRemoved = 10,
DGNECINSTANCESTATUS_ClassLayoutNotStored = 11,
DGNECINSTANCESTATUS_RelationshipInstanceNotCreated = 12,
DGNECINSTANCESTATUS_EnablerNotValidForFile = 13,
DGNECINSTANCESTATUS_DuplicateRelationshipFound = 14,
DGNECINSTANCESTATUS_RequiresSingleEndedRelationshipClass = 15,
DGNECINSTANCESTATUS_PropertyNotFound = 16,
DGNECINSTANCESTATUS_Error = ERROR
} |
| Return status for DgnEC operations. More...
|
|
enum | DgnECHostType : uint32_t {
Unknown = 0,
Element = 1 << 0,
Model = 1 << 2,
File = 1 << 3,
DesignLink = 1 << 4,
View = 1 << 5,
Attachment = 1 << 6,
Level = 1 << 7,
All = 0xffffffff
} |
| Describes the underlying type on which an instance can be persisted. More...
|
|
|
DgnECHostType | operator| (DgnECHostType a, DgnECHostType b) |
|
DgnECHostType | operator& (DgnECHostType a, DgnECHostType b) |
|
DgnECHostType | operator~ (DgnECHostType a) |
|
bool | operator! (DgnECHostType a) |
|