IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseInputTile3dAttribute.h
1 // BaseInputTile3dAttribute.h:
3 // ---------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEINPUTTILE3DATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEINPUTTILE3DATTRIBUTE_H__
17 
18 #include <IPSDKImageProcessing/Attribute/Tile/Tile3d/BaseTile3dAttribute.h>
19 
20 namespace ipsdk {
21 
22 namespace image {
23  class InputImageTile3d;
24 }
25 
26 namespace imaproc {
27 
30 
32 {
33  // declare serial class
35 
36  // declare input data
38 
39 // predefined public types
40 public:
43 
45  typedef boost::shared_ptr<ValueType> StorageType;
46 
48  typedef boost::shared_ptr<const ValueType> ConstStorageType;
49 
50 // constructor and destructor
51 protected:
54 public:
56  virtual ~BaseInputTile3dAttribute() = 0;
57 
58 // methods
59 public:
63  void init(const StorageType& pImageTile3d);
64 
68  const ValueType& getImageTile3d() const;
69 
74  ConstStorageType getStorage() const;
75  StorageType getStorage();
77 
78 private:
81  BoolResult syncInputDerived(const Guid& processingSocketGuid);
82 
83 // attributes
84 protected:
85 
86 };
87 
90 
91 } // end of namespace imaproc
92 } // end of namespace ipsdk
93 
94 #endif // __IPSDKIMAGEPROCESSING_BASEINPUTTILE3DATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for image tile 3d attributes.
Definition: BaseTile3dAttribute.h:26
boost::shared_ptr< const ValueType > ConstStorageType
const storage type associated to object
Definition: BaseInputTile3dAttribute.h:48
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
boost::shared_ptr< ValueType > StorageType
storage type associated to object
Definition: BaseInputTile3dAttribute.h:45
#define IPSDK_DECLARE_INPUT_DATA()
macro allowing to declare an input data
Definition: DataStatusHdrMacros.h:106
Class encapsulating an auto initialized uuid.
Definition: Guid.h:27
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
image::InputImageTile3d ValueType
value type associated to object
Definition: BaseInputTile3dAttribute.h:42
Input class for 3d image tiles.
Definition: InputImageTile3d.h:27
Input class for image tile 3d attributes.
Definition: BaseInputTile3dAttribute.h:31