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

Header part of macros set for image tile attributes. More...

#include <IPSDKBaseProcessing/Attribute/Base/AttributeHdrMacros.h>
#include <IPSDKImageProcessing/Rule/Tile/TileRuleOperators.h>

Go to the source code of this file.

Macros

#define IPSDK_DECLARE_TILE_ATTRIBUTE_BODY(libraryName, className, baseClassName, RuleString)
 [Internal] macro allowing to declare an image tile attribute body concrete class More...
 
#define IPSDK_DECLARE_TILE_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
 [Internal] macro allowing to declare an image tile attribute concrete class More...
 
#define IPSDK_DECLARE_INPUT_TILE_ATTRIBUTE(tileType, libraryName, className, RuleString)
 macros allowing to declare a mandatory input image tile attribute concrete class More...
 
#define IPSDK_DECLARE_INPUT_OPTIONAL_TILE_ATTRIBUTE(tileType, libraryName, className, RuleString)
 macros allowing to declare an optional input image tile attribute concrete class More...
 

Detailed Description

Header part of macros set for image tile attributes.

Author
E. Noirfalise
Date
2016/09/09

Macro Definition Documentation

◆ IPSDK_DECLARE_TILE_ATTRIBUTE_BODY

#define IPSDK_DECLARE_TILE_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 BaseTileAttributeClassType; \
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 an image tile attribute body concrete class

◆ IPSDK_DECLARE_TILE_ATTRIBUTE

#define IPSDK_DECLARE_TILE_ATTRIBUTE (   libraryName,
  className,
  baseClassName,
  RuleString 
)
Value:
class IPSDK_LIB_API(libraryName) className : public baseClassName { \
IPSDK_DECLARE_TILE_ATTRIBUTE_BODY(libraryName, className, baseClassName, RuleString)

[Internal] macro allowing to declare an image tile attribute concrete class

◆ IPSDK_DECLARE_INPUT_TILE_ATTRIBUTE

#define IPSDK_DECLARE_INPUT_TILE_ATTRIBUTE (   tileType,
  libraryName,
  className,
  RuleString 
)
Value:
IPSDK_DECLARE_TILE_ATTRIBUTE(libraryName, className, \
BOOST_PP_CAT(BOOST_PP_CAT(ipsdk::imaproc::BaseInput, \
BOOST_PP_CAT(IPSDK_BASECLASSNAME_, tileType)), \
Attribute), \
RuleString); \
IPSDK_DECLARE_MANDATORY_DATA(); \
};
#define IPSDK_DECLARE_TILE_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
[Internal] macro allowing to declare an image tile attribute concrete class
Definition: TileAttributeHdrMacros.h:40

macros allowing to declare a mandatory input image tile attribute concrete class

◆ IPSDK_DECLARE_INPUT_OPTIONAL_TILE_ATTRIBUTE

#define IPSDK_DECLARE_INPUT_OPTIONAL_TILE_ATTRIBUTE (   tileType,
  libraryName,
  className,
  RuleString 
)
Value:
IPSDK_DECLARE_TILE_ATTRIBUTE(libraryName, className, \
BOOST_PP_CAT(BOOST_PP_CAT(ipsdk::imaproc::BaseInput, \
BOOST_PP_CAT(IPSDK_BASECLASSNAME_, tileType)), \
Attribute), \
RuleString); \
IPSDK_DECLARE_OPTIONAL_DATA(); \
};
#define IPSDK_DECLARE_TILE_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
[Internal] macro allowing to declare an image tile attribute concrete class
Definition: TileAttributeHdrMacros.h:40

macros allowing to declare an optional input image tile attribute concrete class