Schema versions are no longer locked to IFC4 and 2X3. You can now load express schemas at run time.

This commit is contained in:
Dion Moult
2022-01-10 10:45:46 +11:00
parent 6c991ed356
commit 43c74010a5
20 changed files with 282 additions and 14 deletions
+19
View File
@@ -0,0 +1,19 @@
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;