mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-17 10:59:17 +00:00
22ab3ad06a
Removed static Ifc class, renamed to non-static IfcFile. IfcFile renamed to IfcSpfStream Introduced Logger class
12 lines
299 B
C++
12 lines
299 B
C++
#include "IfcRegisterUndef.h"
|
|
#define SHAPES(T) \
|
|
if ( l->is(T::Class()) ) { \
|
|
try { \
|
|
return IfcGeom::convert((T*)l,r); \
|
|
} catch (...) { } \
|
|
Logger::Message(Logger::LOG_ERROR,"Failed to convert:",l->entity); \
|
|
return false; \
|
|
}
|
|
#include "IfcRegisterDef.h"
|
|
|
|
#include "IfcRegister.h" |