mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-18 19:30:25 +00:00
1) Added support for IFC4x1 (see issue https://github.com/IfcOpenShell/IfcOpenShell/issues/504#issuecomment-505051675).
2) New build parameters (flags) introduced for use of IFC4x1 and IFC4x2: USE_IFC4X2 (for use of IfcBridge), USE_IFC4X1 (for use of IfcAlignment) This explains new parameters (flags): #ifdef USE_IFC4X2 #include "../ifcparse/Ifc4x2enum.h" #elif USE_IFC4X1 #include "../ifcparse/Ifc4x1enum.h" #elif USE_IFC4 #include "../ifcparse/Ifc4enum.h" #else #include "../ifcparse/Ifc2x3enum.h" #endif 3) Added comment block "This file is part of IfcOpenShell. ..." at the beggining of the Ifc4x2* files.
This commit is contained in:
committed by
Thomas Krijnen
parent
cee2c4e748
commit
636b2aafdf
@@ -29,12 +29,18 @@
|
||||
|
||||
#include "../ifcparse/IfcException.h"
|
||||
|
||||
#ifdef USE_IFC4
|
||||
|
||||
#ifdef USE_IFC4X2
|
||||
#include "../ifcparse/Ifc4x2enum.h"
|
||||
#elif USE_IFC4X1
|
||||
#include "../ifcparse/Ifc4x1enum.h"
|
||||
#elif USE_IFC4
|
||||
#include "../ifcparse/Ifc4enum.h"
|
||||
#else
|
||||
#include "../ifcparse/Ifc2x3enum.h"
|
||||
#endif
|
||||
|
||||
|
||||
// Forward declarations
|
||||
class IfcEntityInstanceData;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user