IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseImageProcessingRule.h
1 // BaseImageProcessingRule.h:
3 // --------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEIMAGEPROCESSINGRULE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEIMAGEPROCESSINGRULE_H__
17 
20 #include <IPSDKBaseProcessing/Rule/Attribute/BaseAttributeRule.h>
21 
22 namespace ipsdk {
23 namespace imaproc {
24 
27 
29 {
30 // predefined public type
31 public:
33  static const processor::eAttributeRuleType::domain g_attributeRuleType = processor::eAttributeRuleType::eART_ImageProcessing;
34 
35 public:
39  virtual ~BaseImageProcessingRule() = 0;
41 
42 // methods
43 public:
45  processor::eAttributeRuleType getAttributeRuleType() const;
46 
48  virtual eImageProcessingRuleType getImageProcessingRuleType() const = 0;
49 
50 // attributes
51 protected:
52 
53 };
54 
57 
60 {
61  return g_attributeRuleType;
62 }
63 
66 
67 } // end of namespace imaproc
68 } // end of namespace ipsdk
69 
70 #endif // __IPSDKIMAGEPROCESSING_BASEIMAGEPROCESSINGRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for rules applied on image processing objects.
Definition: BaseImageProcessingRule.h:28
eAttributeRuleType
enumerate describing rule on attributes operation type
Definition: AttributeRuleTypes.h:32
Base class for rules applied on attributes.
Definition: BaseAttributeRule.h:32
eImageProcessingRuleType
enumerate describing image processing rule operation type
Definition: ImageProcessingRuleTypes.h:33
Definition of import/export macro for library.
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Rule applied on an image processing data.
Definition: AttributeRuleTypes.h:38
processor::eAttributeRuleType getAttributeRuleType() const
retrieve attribute rule operation type
Definition: BaseImageProcessingRule.h:59
Predefined types for image processing rules management.
static const processor::eAttributeRuleType::domain g_attributeRuleType
attribute rule type associated to rule
Definition: BaseImageProcessingRule.h:33