IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseStripPropertyRule.h
1 // BaseStripPropertyRule.h:
3 // ------------------------
4 //
15 
16 #ifndef __IPSDKIMAGEPROCESSING_BASESTRIPPROPERTYRULE_H__
17 #define __IPSDKIMAGEPROCESSING_BASESTRIPPROPERTYRULE_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_StripProperty;
34 
35 public:
39  virtual ~BaseStripPropertyRule() = 0;
41 
42 // methods
43 public:
45  eStripRuleType getStripRuleType() const;
46 
48  virtual eStripPropertyRuleType getStripPropertyRuleType() 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_BASESTRIPPROPERTYRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
eStripPropertyRuleType
enumerate describing image strip property rule operation type
Definition: StripPropertyRuleTypes.h:34
Base class for rules allowing to check property of an image strip attributes.
Definition: BaseStripPropertyRule.h:28
Predefined types for rules allowing to check property of an image strip attributes management...
eStripRuleType
enumerate describing image strips rule operation type
Definition: StripRuleTypes.h:31
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Base class for rules applied on image strip attributes.
Definition: BaseStripRule.h:28
eStripRuleType getStripRuleType() const
retrieve image strip rule operation type
Definition: BaseStripPropertyRule.h:59
Check for image strip property.
Definition: StripRuleTypes.h:35
static const eStripRuleType::domain g_stripRuleType
image strip rule type associated to rule
Definition: BaseStripPropertyRule.h:33