#ifndef __FPA__IO__UNIQUEVALUESCONTAINERREADER__H__ #define __FPA__IO__UNIQUEVALUESCONTAINERREADER__H__ #include #include namespace fpa { namespace IO { /** */ template< class T > class UniqueValuesContainerReader : public itk::ProcessObject { public: typedef UniqueValuesContainerReader Self; typedef itk::ProcessObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; typedef T TTree; public: itkNewMacro( Self ); itkTypeMacro( UniqueValuesContainerReader, itkProcessObject ); itkGetConstMacro( FileName, std::string ); itkSetMacro( FileName, std::string ); public: T* GetOutput( ); virtual void Update( ); protected: UniqueValuesContainerReader( ); virtual ~UniqueValuesContainerReader( ); virtual void GenerateData( ); private: // Purposely not implemented UniqueValuesContainerReader( const Self& other ); Self& operator=( const Self& other ); protected: std::string m_FileName; }; } // ecapseman } // ecapseman #include #endif // __FPA__IO__UNIQUEVALUESCONTAINERREADER__H__ // eof - $RCSfile$