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