IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseValueCustomPropertyRule.h
1 // BaseValueCustomPropertyRule.h:
3 // ------------------------------
4 //
15 
16 #ifndef __IPSDKBASEPROCESSING_BASEVALUECUSTOMPROPERTYRULE_H__
17 #define __IPSDKBASEPROCESSING_BASEVALUECUSTOMPROPERTYRULE_H__
18 
19 #include <IPSDKBaseProcessing/Rule/Attribute/Value/BaseValueRule.h>
20 
21 namespace ipsdk {
22 namespace processor {
23 
26 
28 {
29 // predefined public type
30 public:
32  static const eValueRuleType::domain g_valueRuleType = eValueRuleType::eVRT_CustomProperty;
33 
34 public:
38  virtual ~BaseValueCustomPropertyRule() = 0;
40 
41 // methods
42 public:
44  eValueRuleType getValueRuleType() const;
45 
46 // attributes
47 protected:
48 
49 };
50 
53 
54 inline eValueRuleType
56 {
57  return g_valueRuleType;
58 }
59 
62 
63 } // end of namespace processor
64 } // end of namespace ipsdk
65 
66 #endif // __IPSDKBASEPROCESSING_BASEVALUECUSTOMPROPERTYRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
#define IPSDKBASEPROCESSING_API
Import/Export macro for library IPSDKBaseProcessing.
Definition: IPSDKBaseProcessingExports.h:27
static const eValueRuleType::domain g_valueRuleType
attribute rule type associated to rule
Definition: BaseValueCustomPropertyRule.h:32
eValueRuleType
enumerate describing rule on value attribute operation type
Definition: ValueRuleTypes.h:33
Base class for rules on value attributes.
Definition: BaseValueRule.h:27
Base class for rules allowing to check attributes value custom properties.
Definition: BaseValueCustomPropertyRule.h:27
Rule allowing to check custom properties on an attribute value.
Definition: ValueRuleTypes.h:41
eValueRuleType getValueRuleType() const
retrieve value rule operation type
Definition: BaseValueCustomPropertyRule.h:55