IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseCombinationRule.h
1 // BaseCombinationRule.h:
3 // ----------------------
4 //
14 
15 #ifndef __IPSDKBASEPROCESSING_BASECOMBINATIONRULE_H__
16 #define __IPSDKBASEPROCESSING_BASECOMBINATIONRULE_H__
17 
18 #include <IPSDKBaseProcessing/Rule/BaseRule.h>
20 
21 namespace ipsdk {
22 namespace processor {
23 
26 
28 {
29 // predefined public type
30 public:
32  static const eRuleType::domain g_ruleType = eRuleType::eRT_Combination;
33 
34 public:
38  virtual ~BaseCombinationRule() = 0;
40 
41 // methods
42 public:
44  eRuleType getRuleType() const;
45 
47  virtual eCombinationRuleType getCombinationRuleType() const = 0;
48 
49 // attributes
50 protected:
51 
52 };
53 
56 
57 inline eRuleType
59 {
60  return g_ruleType;
61 }
62 
65 
66 } // end of namespace processor
67 } // end of namespace ipsdk
68 
69 #endif // __IPSDKBASEPROCESSING_BASECOMBINATIONRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
#define IPSDKBASEPROCESSING_API
Import/Export macro for library IPSDKBaseProcessing.
Definition: IPSDKBaseProcessingExports.h:27
Rule composed of a combination of other rules.
Definition: RuleTypes.h:44
Predefined types for combination rules management.
static const eRuleType::domain g_ruleType
rule type associated to rule
Definition: BaseCombinationRule.h:32
eCombinationRuleType
enumerate describing combination rule operation type
Definition: CombinationRuleTypes.h:32
eRuleType
enumerate describing rule type
Definition: RuleTypes.h:40
Base class for processing attributes rules.
Definition: BaseRule.h:41
Base class for rules composed of a combination of other rules.
Definition: BaseCombinationRule.h:27
eRuleType getRuleType() const
retrieve rule type
Definition: BaseCombinationRule.h:58