File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ public static class IfcSchemaVersionsExtensions
23
23
/// Canonical string version of the schema version
24
24
/// </summary>
25
25
public const string IfcSchema4x3String = "IFC4X3_ADD2" ;
26
+
27
+ /// <summary>
28
+ /// Legacy string version of the IFC4X3 schema version
29
+ /// </summary>
30
+ public const string IfcSchema4x3StringLegacy = "IFC4X3" ;
26
31
27
32
/// <summary>
28
33
/// Converts a set of IFC schema name strings to the relative enum value
@@ -39,6 +44,7 @@ public static IfcSchemaVersions GetSchema(IEnumerable<string> schemaStrings)
39
44
IfcSchema2x3String => IfcSchemaVersions . Ifc2x3 ,
40
45
IfcSchema4String => IfcSchemaVersions . Ifc4 ,
41
46
IfcSchema4x3String => IfcSchemaVersions . Ifc4x3 ,
47
+ IfcSchema4x3StringLegacy => IfcSchemaVersions . Ifc4x3 ,
42
48
_ => IfcSchemaVersions . IfcNoVersion ,
43
49
} ;
44
50
if ( v == IfcSchemaVersions . IfcNoVersion )
You can’t perform that action at this time.
0 commit comments