IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
InputShapeMeasureInfoSetAttribute.h
1 // InputShapeMeasureInfoSetAttribute.h:
3 // ------------------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_INPUTSHAPEMEASUREINFOSETATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_INPUTSHAPEMEASUREINFOSETATTRIBUTE_H__
17 
18 // suppression warnings
19 // warning C4251: 'ipsdk::imaproc::InputShapeMeasureInfoSetAttribute::_pMeasureInfoSet' : class 'boost::shared_ptr<T>' needs to have dll-interface to be used by clients of class 'ipsdk::imaproc::InputShapeMeasureInfoSetAttribute'
20 #pragma warning (push)
21 #pragma warning (disable : 4251)
22 
23 #include <IPSDKImageProcessing/Attribute/ShapeMeasureInfoSet/BaseShapeMeasureInfoSetAttribute.h>
24 
25 namespace ipsdk {
26 namespace imaproc {
27 
30 
32 {
33  // declare serial class
35 
36  // declare input data
38 
39 // predefined public types
40 public:
43 
44 protected:
47 
48 public:
50  virtual ~InputShapeMeasureInfoSetAttribute() = 0;
51 
52 // methods
53 public:
55  void init(const StorageType& pMeasureInfoSet);
56 
60  const ValueType& getMeasureInfoSet() const;
61 
65  StorageType getStorage() const;
66 
68  void clearDerived();
69 
70 // attributes
71 protected:
74 };
75 
78 
79 } // end of namespace imaproc
80 } // end of namespace ipsdk
81 
82 #pragma warning (pop)
83 
84 #endif // __IPSDKIMAGEPROCESSING_INPUTSHAPEMEASUREINFOSETATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
StorageType _pMeasureInfoSet
shape measure set collection associated to attribute
Definition: InputShapeMeasureInfoSetAttribute.h:73
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
#define IPSDK_DECLARE_INPUT_DATA()
macro allowing to declare an input data
Definition: DataStatusHdrMacros.h:106
BaseShapeMeasureInfoSetAttribute::ConstStorageType StorageType
storage type for attribute familly
Definition: InputShapeMeasureInfoSetAttribute.h:42
Object allowing to agregate a collection of measure informations.
Definition: MeasureInfoSet.h:38
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
ipsdk::shape::analysis::MeasureInfoSetConstPtr ConstStorageType
storage type for attribute familly
Definition: BaseShapeMeasureInfoSetAttribute.h:35
Base class for input shape measure information set attributes.
Definition: InputShapeMeasureInfoSetAttribute.h:31
Base class for shape measure information set attributes.
Definition: BaseShapeMeasureInfoSetAttribute.h:27