IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseTileCollPropertyRule.h
1 // BaseTileCollPropertyRule.h:
3 // ---------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASETILECOLLPROPERTYRULE_H__
16 #define __IPSDKIMAGEPROCESSING_BASETILECOLLPROPERTYRULE_H__
17 
18 #include <IPSDKImageProcessing/Rule/TileColl/BaseTileCollRule.h>
20 
21 namespace ipsdk {
22 namespace imaproc {
23 
26 
28 {
29 // predefined public type
30 public:
32  static const eTileCollRuleType::domain g_tileCollRuleType = eTileCollRuleType::eTCRT_TileCollProperty;
33 
34 public:
38  virtual ~BaseTileCollPropertyRule() = 0;
40 
41 // methods
42 public:
44  eTileCollRuleType getTileCollRuleType() const;
45 
47  virtual eTileCollPropertyRuleType getTileCollPropertyRuleType() const = 0;
48 
49 // attributes
50 protected:
51 
52 };
53 
56 
57 inline eTileCollRuleType
59 {
60  return g_tileCollRuleType;
61 }
62 
65 
66 } // end of namespace imaproc
67 } // end of namespace ipsdk
68 
69 #endif // __IPSDKIMAGEPROCESSING_BASETILECOLLPROPERTYRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
static const eTileCollRuleType::domain g_tileCollRuleType
tile collection processing rule type associated to rule
Definition: BaseTileCollPropertyRule.h:32
eTileCollPropertyRuleType
enumerate describing rule operation type applied on property of attributes associated to collection o...
Definition: TileCollPropertyRuleTypes.h:31
Base class for rules applied on attributes associated to collection of image tiles.
Definition: BaseTileCollRule.h:28
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Predefined types for tile collection attributes property rules.
Property of a tile collection.
Definition: TileCollRuleTypes.h:35
Base class for rule checking properties of tile collections.
Definition: BaseTileCollPropertyRule.h:27
eTileCollRuleType
enumerate describing rule operation type applied on attributes associated to collection of image tile...
Definition: TileCollRuleTypes.h:33
eTileCollRuleType getTileCollRuleType() const
get tile collection rule type
Definition: BaseTileCollPropertyRule.h:58