IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseKernelPropertyRule.h
1 // BaseKernelPropertyRule.h:
3 // -------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEKERNELPROPERTYRULE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEKERNELPROPERTYRULE_H__
17 
19 #include <IPSDKImageProcessing/Rule/BaseImageProcessingRule.h>
21 
22 namespace ipsdk {
23 namespace imaproc {
24 
27 
29 {
30 // predefined public type
31 public:
33  static const eImageProcessingRuleType::domain g_imageProcessingRuleType = eImageProcessingRuleType::eIPRT_KernelProperty;
34 
35 public:
39  virtual ~BaseKernelPropertyRule() = 0;
41 
42 // methods
43 public:
45  eImageProcessingRuleType getImageProcessingRuleType() const;
46 
48  virtual eKernelRuleType getKernelRuleType() const = 0;
49 
50 // attributes
51 protected:
52 
53 };
54 
57 
60 {
62 }
63 
66 
67 } // end of namespace imaproc
68 } // end of namespace ipsdk
69 
70 #endif // __IPSDKIMAGEPROCESSING_BASEKERNELPROPERTYRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for rules applied on image processing objects.
Definition: BaseImageProcessingRule.h:28
Base class for rules allowing to check property of a kernel attribute.
Definition: BaseKernelPropertyRule.h:28
eKernelRuleType
enumerate describing kernel rule operation type
Definition: KernelRuleTypes.h:33
Predefined types for kernel rules management.
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
eImageProcessingRuleType getImageProcessingRuleType() const
retrieve image processing rule operation type
Definition: BaseKernelPropertyRule.h:59
check for kernel property
Definition: ImageProcessingRuleTypes.h:45
static const eImageProcessingRuleType::domain g_imageProcessingRuleType
image processing rule type associated to rule
Definition: BaseKernelPropertyRule.h:33