IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseOutputYStripSeq2dAttribute.h
1 // BaseOutputYStripSeq2dAttribute.h:
3 // ---------------------------------
4 //
15 
16 #ifndef __IPSDKIMAGEPROCESSING_BASEOUTPUTYSTRIPSEQ2DATTRIBUTE_H__
17 #define __IPSDKIMAGEPROCESSING_BASEOUTPUTYSTRIPSEQ2DATTRIBUTE_H__
18 
19 #include <IPSDKImageProcessing/Attribute/Strip/YStripSeq2d/BaseYStripSeq2dAttribute.h>
20 
21 namespace ipsdk {
22 
23 namespace image {
24  class OutputImageYStripSeq2d;
25 }
26 
27 namespace imaproc {
28 
31 
33 {
34  // declare serial class
36 
37  // declare output data
39 
40 // predefined public types
41 public:
44 
46  typedef boost::shared_ptr<ValueType> StorageType;
47 
49  typedef boost::shared_ptr<const ValueType> ConstStorageType;
50 
51 // constructor and destructor
52 protected:
55 public:
57  virtual ~BaseOutputYStripSeq2dAttribute() = 0;
58 
59 // methods
60 public:
64  void init(const StorageType& pImageYStripSeq2d);
65 
70  const ValueType& getImageYStripSeq2d() const;
71  ValueType& getImageYStripSeq2d();
73 
78  ConstStorageType getStorage() const;
79  StorageType getStorage();
81 
82 private:
85  BoolResult syncOutputDerived(const Guid& processingSocketGuid);
86 
87 // attributes
88 protected:
89 
90 };
91 
94 
95 } // end of namespace imaproc
96 } // end of namespace ipsdk
97 
98 #endif // __IPSDKIMAGEPROCESSING_BASEOUTPUTYSTRIPSEQ2DATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for sequence image 2d strip with splitting along X axis attributes.
Definition: BaseYStripSeq2dAttribute.h:27
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
#define IPSDK_DECLARE_OUTPUT_DATA()
macro allowing to declare an output data
Definition: DataStatusHdrMacros.h:113
Class encapsulating an auto initialized uuid.
Definition: Guid.h:27
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
boost::shared_ptr< ValueType > StorageType
storage type associated to object
Definition: BaseOutputYStripSeq2dAttribute.h:46
Base class for output sequence image 2d strip with splitting along X axis attributes.
Definition: BaseOutputYStripSeq2dAttribute.h:32
image::OutputImageYStripSeq2d ValueType
value type associated to object
Definition: BaseOutputYStripSeq2dAttribute.h:43
boost::shared_ptr< const ValueType > ConstStorageType
const storage type associated to object
Definition: BaseOutputYStripSeq2dAttribute.h:49
Output class for sequence image 2d strip with splitting along Y axis.
Definition: OutputImageYStripSeq2d.h:27