IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseImagePropertyRule.h
1 // BaseImagePropertyRule.h:
3 // ------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEIMAGEPROPERTYRULE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEIMAGEPROPERTYRULE_H__
17 
18 #include <IPSDKImageProcessing/Rule/Image/BaseImageRule.h>
20 
21 namespace ipsdk {
22 namespace imaproc {
23 
26 
28 {
29 // predefined public type
30 public:
32  static const eImageRuleType::domain g_imageRuleType = eImageRuleType::eIRT_ImageProperty;
33 
34 public:
38  virtual ~BaseImagePropertyRule() = 0;
40 
41 // methods
42 public:
44  eImageRuleType getImageRuleType() const;
45 
47  virtual eImagePropertyRuleType getImagePropertyRuleType() const = 0;
48 
49 // attributes
50 protected:
51 
52 };
53 
56 
57 inline eImageRuleType
59 {
60  return g_imageRuleType;
61 }
62 
65 
66 } // end of namespace imaproc
67 } // end of namespace ipsdk
68 
69 #endif // __IPSDKIMAGEPROCESSING_BASEIMAGEPROPERTYRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
static const eImageRuleType::domain g_imageRuleType
image rule type associated to rule
Definition: BaseImagePropertyRule.h:32
Check for image property.
Definition: ImageRuleTypes.h:35
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
eImageRuleType
enumerate describing image rule operation type
Definition: ImageRuleTypes.h:31
Base class for rules applied on image attributes.
Definition: BaseImageRule.h:28
Predefined types for rules allowing to check property of an image attribute.
eImageRuleType getImageRuleType() const
retrieve image rule operation type
Definition: BaseImagePropertyRule.h:58
Base class for rules allowing to check property of an image attribute.
Definition: BaseImagePropertyRule.h:27
eImagePropertyRuleType
enumerate describing image property rule operation type
Definition: ImagePropertyRuleTypes.h:34