Files
IfcOpenShell/src/ifcgeom/IfcRegisterConvertShape.h
T

15 lines
349 B
C++
Raw Normal View History

#include "IfcRegisterUndef.h"
#define SHAPE(T) \
if ( l->is(T::Class()) ) { \
try { \
2011-10-12 16:43:29 +00:00
if ( convert((T*)l,r) ) { \
Cache::Shape[id] = r; \
return &(Cache::Shape[id]); \
2011-10-12 16:43:29 +00:00
} \
} catch(...) { } \
Ifc::LogMessage("Error","Failed to convert:",l->entity); \
return false; \
}
#include "IfcRegisterDef.h"
#include "IfcRegister.h"