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