IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseStripBinaryMixedRule.h
1 // BaseStripBinaryMixedRule.h:
3 // ---------------------------
4 //
15 
16 #ifndef __IPSDKIMAGEPROCESSING_BASESTRIPBINARYMIXEDRULE_H__
17 #define __IPSDKIMAGEPROCESSING_BASESTRIPBINARYMIXEDRULE_H__
18 
19 #include <IPSDKImageProcessing/Rule/Strip/BaseStripRule.h>
21 
22 namespace ipsdk {
23 namespace imaproc {
24 
27 
29 {
30 // predefined public type
31 public:
33  static const eStripRuleType::domain g_stripRuleType = eStripRuleType::eSRT_StripBinaryMixed;
34 
35 public:
39  virtual ~BaseStripBinaryMixedRule() = 0;
41 
42 // methods
43 public:
45  eStripRuleType getStripRuleType() const;
46 
48  virtual eStripBinaryMixedRuleType getStripBinaryMixedRuleType() const = 0;
49 
50 // attributes
51 protected:
52 
53 };
54 
57 
58 inline eStripRuleType
60 {
61  return g_stripRuleType;
62 }
63 
66 
67 } // end of namespace imaproc
68 } // end of namespace ipsdk
69 
70 #endif // __IPSDKIMAGEPROCESSING_BASESTRIPBINARYMIXEDRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for rules allowing to match properties of a strip attribute with an other attribute...
Definition: BaseStripBinaryMixedRule.h:28
eStripBinaryMixedRuleType
enumerate describing strip binary mixed rule operation type
Definition: StripBinaryMixedRuleTypes.h:35
eStripRuleType
enumerate describing image strips rule operation type
Definition: StripRuleTypes.h:31
static const eStripRuleType::domain g_stripRuleType
image strip rule type associated to rule
Definition: BaseStripBinaryMixedRule.h:33
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Predefined types for rules allowing to check property of an image strip attributes management...
Check an image strip property compared with an other parameter.
Definition: StripRuleTypes.h:37
eStripRuleType getStripRuleType() const
retrieve image strip rule operation type
Definition: BaseStripBinaryMixedRule.h:59
Base class for rules applied on image strip attributes.
Definition: BaseStripRule.h:28