IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseCustomMeasureResult.h
1 // BaseCustomMeasureResult.h:
3 // --------------------------
4 //
15 
16 #ifndef __IPSDKBASESHAPEANALYSIS_BASECUSTOMMEASURERESULT_H__
17 #define __IPSDKBASESHAPEANALYSIS_BASECUSTOMMEASURERESULT_H__
18 
19 #include <IPSDKBaseShapeAnalysis/Measure/Result/BaseMeasureResult.h>
20 
21 namespace ipsdk {
22 namespace shape {
23 namespace analysis {
24 
27 
29 {
30  // declare serial class
32 
33 public:
37  virtual ~BaseCustomMeasureResult() = 0;
39 
40 // methods
41 public:
43  eMsrResultType getMsrResultType() const;
44 
45 // attributes
46 protected:
47 
48 };
49 
52 
53 inline eMsrResultType
55 {
57 }
58 
61 
62 } // end of namespace analysis
63 } // end of namespace shape
64 } // end of namespace ipsdk
65 
66 #endif // __IPSDKBASESHAPEANALYSIS_BASECUSTOMMEASURERESULT_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITH_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:91
#define IPSDKBASESHAPEANALYSIS_API
Import/Export macro for library IPSDKBaseShapeAnalysis.
Definition: IPSDKBaseShapeAnalysisExports.h:25
eMsrResultType getMsrResultType() const
retrieve measure result type associated to object
Definition: BaseCustomMeasureResult.h:54
measure result is associated to a custom data type behavior, see associated measure for more informat...
Definition: MeasureResultTypes.h:46
eMsrResultType
Enumerate describing measure measure result type.
Definition: MeasureResultTypes.h:40
Base class for measure results.
Definition: BaseMeasureResult.h:29
Base class for measure results associated to a custom data type for each shape.
Definition: BaseCustomMeasureResult.h:28