mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-17 10:59:17 +00:00
20 lines
310 B
Plaintext
20 lines
310 B
Plaintext
SCHEMA IFCROGUE;
|
|
|
|
TYPE IfcDonkeyPowerMeasure = REAL;
|
|
END_TYPE;
|
|
|
|
TYPE IfcLabel = STRING(255);
|
|
END_TYPE;
|
|
|
|
ENTITY IfcBurbRoot
|
|
SUBTYPE OF (IfcRoot);
|
|
AcidDamage : OPTIONAL IfcDonkeyPowerMeasure;
|
|
END_ENTITY;
|
|
|
|
ENTITY IfcRoot
|
|
ABSTRACT SUPERTYPE OF (IfcBurbRoot);
|
|
Name : OPTIONAL IfcLabel;
|
|
END_ENTITY;
|
|
|
|
END_SCHEMA;
|