#ifndef __fpa__Base__Functors__RegionGrow__Base__h__ #define __fpa__Base__Functors__RegionGrow__Base__h__ #include #include namespace fpa { namespace Base { namespace Functors { namespace RegionGrow { /** */ template< class _TVertex > class Base : public itk::Object { public: typedef Base Self; typedef itk::Object Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; typedef _TVertex TVertex; public: itkTypeMacro( Base, itk::Object ); public: virtual bool Evaluate( const TVertex& a, const TVertex& b ) const = 0; protected: Base( ) : Superclass( ) { } virtual ~Base( ) { } private: // Purposely not defined Base( const Self& other ); Self& operator=( const Self& other ); }; } // ecapseman } // ecapseman } // ecapseman } // ecapseman #endif // __fpa__Base__Functors__RegionGrow__Base__h__ // eof - $RCSfile$