#ifndef __CPPLUGINSIO__DATAREPRODUCER__H__ #define __CPPLUGINSIO__DATAREPRODUCER__H__ #include #include namespace cpPluginsIO { /** */ class cpPluginsIO_EXPORT DataReproducer : public cpPlugins::ProcessObject { public: typedef DataReproducer Self; typedef cpPlugins::ProcessObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( DataReproducer, cpPlugins::ProcessObject ); cpPlugins_Id_Macro( DataReproducer, IO ); protected: DataReproducer( ); virtual ~DataReproducer( ); virtual std::string _GenerateData( ) ITK_OVERRIDE; private: // Purposely not implemented DataReproducer( const Self& ); Self& operator=( const Self& ); }; } // ecapseman #endif // __CPPLUGINSIO__DATAREPRODUCER__H__ // eof - $RCSfile$