Fix #2398. Add support for IFC4X3 entities.

This commit is contained in:
Dion Moult
2022-09-11 22:17:41 +10:00
parent 319aada33b
commit eb8bf60e93
+2 -2
View File
@@ -50,7 +50,7 @@ class IfcStore:
last_transaction = ""
history = []
future = []
schema_identifiers = ["IFC4", "IFC2X3"]
schema_identifiers = ["IFC4", "IFC2X3", "IFC4X3"]
@staticmethod
def purge():
@@ -70,7 +70,7 @@ class IfcStore:
IfcStore.last_transaction = ""
IfcStore.history = []
IfcStore.future = []
IfcStore.schema_identifiers = ["IFC4", "IFC2X3"]
IfcStore.schema_identifiers = ["IFC4", "IFC2X3", "IFC4X3"]
@staticmethod
def get_file():