00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __itkSimpleDataObjectDecorator_h
00021 #define __itkSimpleDataObjectDecorator_h
00022
00023 #include "itkDataObject.h"
00024 #include "itkObjectFactory.h"
00025
00026 namespace itk
00027 {
00028
00029
00058 template<class T>
00059 class ITK_EXPORT SimpleDataObjectDecorator : public DataObject
00060 {
00061 public:
00063 typedef SimpleDataObjectDecorator Self;
00064 typedef DataObject Superclass;
00065 typedef SmartPointer<Self> Pointer;
00066 typedef SmartPointer<const Self> ConstPointer;
00067
00069 typedef T ComponentType;
00070
00072 itkNewMacro(Self);
00073
00075 itkTypeMacro(SimpleDataObjectDecorator, DataObject);
00076
00078 virtual void Set(const T& val);
00079
00081 virtual T& Get() { return m_Component; }
00082 virtual T Get() const { return m_Component; }
00083
00084
00085 protected:
00086 SimpleDataObjectDecorator();
00087 ~SimpleDataObjectDecorator();
00088 virtual void PrintSelf(std::ostream& os, Indent indent) const;
00089
00090 protected:
00091
00092 private:
00093 SimpleDataObjectDecorator(const Self&);
00094 void operator=(const Self&);
00095
00096 ComponentType m_Component;
00097 };
00098
00099 }
00100
00101 #ifndef ITK_MANUAL_INSTANTIATION
00102 #include "itkSimpleDataObjectDecorator.txx"
00103 #endif
00104
00105 #endif
00106