#ifndef __CPPLUGINS__PLUGINS__POLYDATAREADER__H__ #define __CPPLUGINS__PLUGINS__POLYDATAREADER__H__ #include #include #include #include namespace cpPlugins { namespace Plugins { /** */ class cpPlugins_EXPORT PolyDataReader : public cpPlugins::Interface::PolyDataSource { public: typedef PolyDataReader Self; typedef cpPlugins::Interface::PolyDataSource Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( PolyDataReader, cpPluginsInterfacePolyDataSource ); public: virtual std::string GetClassName( ) const; protected: PolyDataReader( ); virtual ~PolyDataReader( ); virtual std::string _GenerateData( ); private: // Purposely not implemented PolyDataReader( const Self& ); Self& operator=( const Self& ); protected: vtkSmartPointer< vtkAlgorithm > m_Reader; }; // --------------------------------------------------------------------- CPPLUGINS_INHERIT_PROVIDER( PolyDataReader ); } // ecapseman } // ecapseman #endif // __CPPLUGINS__PLUGINS__POLYDATAREADER__H__ // eof - $RCSfile$