IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseImageProcessingAttribute.h
1 // BaseImageProcessingAttribute.h:
3 // -------------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEIMAGEPROCESSINGATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEIMAGEPROCESSINGATTRIBUTE_H__
17 
19 #include <IPSDKBaseProcessing/Attribute/Base/BaseAttribute.h>
21 
22 namespace ipsdk {
23 namespace imaproc {
24 
27 
29 {
30  // declare serial class
32 
33 // predefined public types
34 public:
36  static const processor::eAttributeType::domain g_attributeType = processor::eAttributeType::eAT_ImageProcessing;
37 
38 public:
42  virtual ~BaseImageProcessingAttribute() = 0;
44 
45 // methods
46 public:
48  processor::eAttributeType getAttributeType() const;
49 
51  virtual eImageProcessingAttributeType getImageProcessingAttributeType() const = 0;
52 
53 // attributes
54 protected:
55 
56 };
57 
60 
63 {
64  return g_attributeType;
65 }
66 
69 
70 } // end of namespace imaproc
71 } // end of namespace ipsdk
72 
73 #endif // __IPSDKIMAGEPROCESSING_BASEIMAGEPROCESSINGATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for image processing attributes.
Definition: BaseImageProcessingAttribute.h:28
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
processor::eAttributeType getAttributeType() const
retrieve attribute type
Definition: BaseImageProcessingAttribute.h:62
Definition of import/export macro for library.
Base class for processing attributes.
Definition: BaseAttribute.h:43
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Attribute associated to image processing elements.
Definition: AttributeTypes.h:42
eImageProcessingAttributeType
Enumerate describing image attributes type.
Definition: ImageProcessingAttributeTypes.h:33
static const processor::eAttributeType::domain g_attributeType
type associated to attribute
Definition: BaseImageProcessingAttribute.h:36
Predefined types for image processing attributes management.
eAttributeType
Enumerate describing attributes type.
Definition: AttributeTypes.h:36