IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseTileCollRule.h
1 // BaseTileCollRule.h:
3 // -------------------
4 //
15 
16 #ifndef __IPSDKIMAGEPROCESSING_BASETILECOLLRULE_H__
17 #define __IPSDKIMAGEPROCESSING_BASETILECOLLRULE_H__
18 
19 #include <IPSDKImageProcessing/Rule/BaseImageProcessingRule.h>
21 
22 namespace ipsdk {
23 namespace imaproc {
24 
27 
29 {
30 // predefined public type
31 public:
33  static const eImageProcessingRuleType::domain g_imageProcessingRuleType = eImageProcessingRuleType::eIPRT_TileColl;
34 
35 public:
41 
42 // methods
43 public:
45  eImageProcessingRuleType getImageProcessingRuleType() const;
46 
48  virtual eTileCollRuleType getTileCollRuleType() const = 0;
49 
50 // attributes
51 protected:
52 
53 };
54 
57 
60 {
62 }
63 
66 
67 } // end of namespace imaproc
68 } // end of namespace ipsdk
69 
70 #endif // __IPSDKIMAGEPROCESSING_BASETILECOLLRULE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for rules applied on image processing objects.
Definition: BaseImageProcessingRule.h:28
Predefined types for management of attributes associated to collection of image tiles.
eImageProcessingRuleType
enumerate describing image processing rule operation type
Definition: ImageProcessingRuleTypes.h:33
Rules applying on collection of image tiles.
Definition: ImageProcessingRuleTypes.h:43
static const eImageProcessingRuleType::domain g_imageProcessingRuleType
image processing rule type associated to rule
Definition: BaseTileCollRule.h:33
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
eTileCollRuleType
enumerate describing rule operation type applied on attributes associated to collection of image tile...
Definition: TileCollRuleTypes.h:33
eImageProcessingRuleType getImageProcessingRuleType() const
retrieve image processing rule operation type
Definition: BaseTileCollRule.h:59