IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
Macros
GeometryEntityCollAttributeHdrMacros.h File Reference

Header part of macros set for geometry entity collection class declaration. More...

#include <IPSDKBaseProcessing/Attribute/Base/AttributeHdrMacros.h>
#include <IPSDKImageProcessing/Attribute/GeometryEntityColl/BaseGeometryEntityCollAttribute.h>
#include <IPSDKBaseProcessing/Rule/RuleOperators.h>

Go to the source code of this file.

Macros

#define IPSDK_DECLARE_GEOMETRYENTITYCOLL_ATTRIBUTE_BODY(libraryName, className, baseClassName, RuleString)
 [Internal] macro allowing to declare a geometry entity collection attribute body concrete class More...
 
#define IPSDK_DECLARE_MANDATORY_GEOMETRYENTITYCOLL_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
 [Internal] macro allowing to declare a mandatory geometry entity collection attribute concrete class More...
 
#define IPSDK_DECLARE_OPTIONAL_GEOMETRYENTITYCOLL_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
 [Internal] macro allowing to declare a optional geometry entity collection attribute concrete class More...
 

Detailed Description

Header part of macros set for geometry entity collection class declaration.

Author
E. Noirfalise
Date
2015/05/27

Macro Definition Documentation

◆ IPSDK_DECLARE_GEOMETRYENTITYCOLL_ATTRIBUTE_BODY

#define IPSDK_DECLARE_GEOMETRYENTITYCOLL_ATTRIBUTE_BODY (   libraryName,
  className,
  baseClassName,
  RuleString 
)
Value:
IPSDK_DECLARE_SERIAL_WITHOUT_COPY(libraryName, className) \
IPSDK_DECLARE_TOOLTIP() \
IPSDK_DECLARE_ATTRIBUTE_BASE_BODY(libraryName, className, RuleString) \
public: \
typedef baseClassName BaseGeometryEntityCollAttributeClassType; \
protected: \
className(); \
public: \
~className();
#define IPSDK_DECLARE_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on class
Definition: SerializationHdrMacro.h:79

[Internal] macro allowing to declare a geometry entity collection attribute body concrete class

◆ IPSDK_DECLARE_MANDATORY_GEOMETRYENTITYCOLL_ATTRIBUTE

#define IPSDK_DECLARE_MANDATORY_GEOMETRYENTITYCOLL_ATTRIBUTE (   libraryName,
  className,
  baseClassName,
  RuleString 
)
Value:
class IPSDK_LIB_API(libraryName) className : public baseClassName { \
IPSDK_DECLARE_GEOMETRYENTITYCOLL_ATTRIBUTE_BODY(libraryName, className, baseClassName, RuleString) \
IPSDK_DECLARE_MANDATORY_DATA(); \
};

[Internal] macro allowing to declare a mandatory geometry entity collection attribute concrete class

◆ IPSDK_DECLARE_OPTIONAL_GEOMETRYENTITYCOLL_ATTRIBUTE

#define IPSDK_DECLARE_OPTIONAL_GEOMETRYENTITYCOLL_ATTRIBUTE (   libraryName,
  className,
  baseClassName,
  RuleString 
)
Value:
class IPSDK_LIB_API(libraryName) className : public baseClassName { \
IPSDK_DECLARE_GEOMETRYENTITYCOLL_ATTRIBUTE_BODY(libraryName, className, baseClassName, RuleString) \
IPSDK_DECLARE_OPTIONAL_DATA(); \
};

[Internal] macro allowing to declare a optional geometry entity collection attribute concrete class