IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseInOutImageAttribute.h
1 // BaseInOutImageAttribute.h:
3 // --------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEINOUTIMAGEATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEINOUTIMAGEATTRIBUTE_H__
17 
18 #include <IPSDKImageProcessing/Attribute/Image/BaseImageAttribute.h>
19 
20 namespace ipsdk {
21 namespace imaproc {
22 
25 
27 {
28  // declare serial class
30 
31  // declare in/out data
33 
34 // predefined public types
35 public:
38 
41 
44 
47 
48 // constructor and destructor
49 protected:
52 public:
54  virtual ~BaseInOutImageAttribute() = 0;
55 
56 // methods
57 public:
61  void init(const image::ImagePtr& pImage);
62 
66  image::BaseImage& getImage();
67 
71  ConstStorageType getStorage() const;
72  StorageType getStorage();
73 
74 // attributes
75 protected:
76 
77 };
78 
81 
82 } // end of namespace imaproc
83 } // end of namespace ipsdk
84 
85 #endif // __IPSDKIMAGEPROCESSING_BASEINOUTIMAGEATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for image attributes.
Definition: BaseImageAttribute.h:32
boost::shared_ptr< BaseImage > ImagePtr
Definition: ImageTypes.h:139
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
#define IPSDK_DECLARE_INOUT_DATA()
macro allowing to declare an in/out data
Definition: DataStatusHdrMacros.h:120
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
boost::shared_ptr< const BaseImage > ImageConstPtr
Definition: ImageTypes.h:140
image::ImageConstPtr ConstStorageType
const storage type associated to object
Definition: BaseInOutImageAttribute.h:43
image::BaseImage ValueType
value type associated to object
Definition: BaseInOutImageAttribute.h:37
Base class for images data type.
Definition: BaseImage.h:43
image::ImagePtr StorageType
storage type associated to object
Definition: BaseInOutImageAttribute.h:40
Base class for in/out image attributes.
Definition: BaseInOutImageAttribute.h:26
BaseInOutImageAttribute BaseImageAttributeType
base image attribute class
Definition: BaseInOutImageAttribute.h:46