Files
IfcOpenShell/src/ifcgeom/IfcRegisterShapeType.h
T

14 lines
467 B
C
Raw Normal View History

#include "IfcRegisterUndef.h"
#define SHAPES(T) \
2015-09-08 20:40:54 +02:00
if ( l->declaration().is(T::Class()) ) return ST_SHAPELIST;
#define SHAPE(T) \
2015-09-08 20:40:54 +02:00
if ( l->declaration().is(T::Class()) ) return ST_SHAPE;
#define WIRE(T) \
2015-09-08 20:40:54 +02:00
if ( l->declaration().is(T::Class()) ) return ST_WIRE;
#define FACE(T) \
2015-09-08 20:40:54 +02:00
if ( l->declaration().is(T::Class()) ) return ST_FACE;
#define CURVE(T) \
2015-09-08 20:40:54 +02:00
if ( l->declaration().is(T::Class()) ) return ST_CURVE;
#include "IfcRegisterDef.h"
#include "IfcRegister.h"