#ifndef __CPPLUGINSMESHSOURCES__SPHERESOURCE__H__ #define __CPPLUGINSMESHSOURCES__SPHERESOURCE__H__ #include #include namespace cpPluginsMeshSources { /** */ class cpPluginsMeshSources_EXPORT SphereSource : public cpPlugins::ProcessObject { cpPluginsObject; public: typedef SphereSource Self; typedef cpPlugins::ProcessObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( SphereSource, cpPlugins::ProcessObject ); cpPlugins_Id_Macro( SphereSource, MeshSources ); protected: SphereSource( ); virtual ~SphereSource( ); virtual void _GenerateData( ) ITK_OVERRIDE; private: // Purposely not implemented SphereSource( const Self& ); Self& operator=( const Self& ); }; } // ecapseman #endif // __CPPLUGINSMESHSOURCES__SPHERESOURCE__H__ // eof - $RCSfile$