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

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

#include <IPSDKBaseProcessing/Attribute/Base/AttributeHdrMacros.h>
#include <IPSDKImageProcessing/Rule/Strip/StripRuleOperators.h>

Go to the source code of this file.

Macros

#define IPSDK_DECLARE_STRIP_ATTRIBUTE_BODY(libraryName, className, baseClassName, RuleString)
 [Internal] macro allowing to declare an image strip attribute body concrete class More...
 
#define IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
 [Internal] macro allowing to declare an image strip attribute concrete class More...
 
#define IPSDK_DECLARE_INPUT_STRIP_ATTRIBUTE(stripType, libraryName, className, RuleString)
 macros allowing to declare a mandatory input image strip attribute concrete class More...
 
#define IPSDK_DECLARE_INOUT_STRIP_ATTRIBUTE(stripType, libraryName, className, RuleString)
 macros allowing to declare a mandatory in/out image strip attribute concrete class More...
 
#define IPSDK_DECLARE_OUTPUT_STRIP_ATTRIBUTE(stripType, libraryName, className, RuleString)
 macros allowing to declare a mandatory output image strip attribute concrete class More...
 
#define IPSDK_DECLARE_INPUT_OPTIONAL_STRIP_ATTRIBUTE(stripType, libraryName, className, RuleString)
 macros allowing to declare an optional input image strip attribute concrete class More...
 
#define IPSDK_DECLARE_INOUT_OPTIONAL_STRIP_ATTRIBUTE(stripType, libraryName, className, RuleString)
 macros allowing to declare an optional in/out image strip attribute concrete class More...
 
#define IPSDK_DECLARE_OUTPUT_OPTIONAL_STRIP_ATTRIBUTE(stripType, libraryName, className, RuleString)
 macros allowing to declare an optional output image strip attribute concrete class More...
 

Detailed Description

Header part of macros set for image strip attributes.

Author
E.Noirfalise
Date
2015/01/15

Macro Definition Documentation

◆ IPSDK_DECLARE_STRIP_ATTRIBUTE_BODY

#define IPSDK_DECLARE_STRIP_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 BaseStripAttributeClassType; \
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 strip attribute body concrete class

◆ IPSDK_DECLARE_STRIP_ATTRIBUTE

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

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

◆ IPSDK_DECLARE_INPUT_STRIP_ATTRIBUTE

#define IPSDK_DECLARE_INPUT_STRIP_ATTRIBUTE (   stripType,
  libraryName,
  className,
  RuleString 
)
Value:
IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, \
BOOST_PP_CAT(BOOST_PP_CAT(ipsdk::imaproc::BaseInput, \
BOOST_PP_CAT(IPSDK_BASECLASSNAME_, stripType)), \
Attribute), \
RuleString); \
IPSDK_DECLARE_MANDATORY_DATA(); \
};
#define IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
[Internal] macro allowing to declare an image strip attribute concrete class
Definition: StripAttributeHdrMacros.h:40

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

◆ IPSDK_DECLARE_INOUT_STRIP_ATTRIBUTE

#define IPSDK_DECLARE_INOUT_STRIP_ATTRIBUTE (   stripType,
  libraryName,
  className,
  RuleString 
)
Value:
IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, \
BOOST_PP_CAT(BOOST_PP_CAT(ipsdk::imaproc::BaseInOut, \
BOOST_PP_CAT(IPSDK_BASECLASSNAME_, stripType)), \
Attribute), \
RuleString); \
IPSDK_DECLARE_MANDATORY_DATA(); \
};
#define IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
[Internal] macro allowing to declare an image strip attribute concrete class
Definition: StripAttributeHdrMacros.h:40

macros allowing to declare a mandatory in/out image strip attribute concrete class

◆ IPSDK_DECLARE_OUTPUT_STRIP_ATTRIBUTE

#define IPSDK_DECLARE_OUTPUT_STRIP_ATTRIBUTE (   stripType,
  libraryName,
  className,
  RuleString 
)
Value:
IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, \
BOOST_PP_CAT(BOOST_PP_CAT(ipsdk::imaproc::BaseOutput, \
BOOST_PP_CAT(IPSDK_BASECLASSNAME_, stripType)), \
Attribute), \
RuleString); \
IPSDK_DECLARE_MANDATORY_DATA(); \
};
#define IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
[Internal] macro allowing to declare an image strip attribute concrete class
Definition: StripAttributeHdrMacros.h:40

macros allowing to declare a mandatory output image strip attribute concrete class

◆ IPSDK_DECLARE_INPUT_OPTIONAL_STRIP_ATTRIBUTE

#define IPSDK_DECLARE_INPUT_OPTIONAL_STRIP_ATTRIBUTE (   stripType,
  libraryName,
  className,
  RuleString 
)
Value:
IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, \
BOOST_PP_CAT(BOOST_PP_CAT(ipsdk::imaproc::BaseInput, \
BOOST_PP_CAT(IPSDK_BASECLASSNAME_, stripType)), \
Attribute), \
RuleString); \
IPSDK_DECLARE_OPTIONAL_DATA(); \
};
#define IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
[Internal] macro allowing to declare an image strip attribute concrete class
Definition: StripAttributeHdrMacros.h:40

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

◆ IPSDK_DECLARE_INOUT_OPTIONAL_STRIP_ATTRIBUTE

#define IPSDK_DECLARE_INOUT_OPTIONAL_STRIP_ATTRIBUTE (   stripType,
  libraryName,
  className,
  RuleString 
)
Value:
IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, \
BOOST_PP_CAT(BOOST_PP_CAT(ipsdk::imaproc::BaseInOut, \
BOOST_PP_CAT(IPSDK_BASECLASSNAME_, stripType)), \
Attribute), \
RuleString); \
IPSDK_DECLARE_OPTIONAL_DATA(); \
};
#define IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
[Internal] macro allowing to declare an image strip attribute concrete class
Definition: StripAttributeHdrMacros.h:40

macros allowing to declare an optional in/out image strip attribute concrete class

◆ IPSDK_DECLARE_OUTPUT_OPTIONAL_STRIP_ATTRIBUTE

#define IPSDK_DECLARE_OUTPUT_OPTIONAL_STRIP_ATTRIBUTE (   stripType,
  libraryName,
  className,
  RuleString 
)
Value:
IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, \
BOOST_PP_CAT(BOOST_PP_CAT(ipsdk::imaproc::BaseOutput, \
BOOST_PP_CAT(IPSDK_BASECLASSNAME_, stripType)), \
Attribute), \
RuleString); \
IPSDK_DECLARE_OPTIONAL_DATA(); \
};
#define IPSDK_DECLARE_STRIP_ATTRIBUTE(libraryName, className, baseClassName, RuleString)
[Internal] macro allowing to declare an image strip attribute concrete class
Definition: StripAttributeHdrMacros.h:40

macros allowing to declare an optional output image strip attribute concrete class