#ifndef __FPAPLUGINS__INVERTCOSTFUNCTION__H__ #define __FPAPLUGINS__INVERTCOSTFUNCTION__H__ #include #include namespace fpaPlugins { /** */ class fpaPlugins_EXPORT InvertCostFunction : public cpPlugins::ProcessObject { public: typedef InvertCostFunction Self; typedef cpPlugins::ProcessObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( InvertCostFunction, cpPlugins::ProcessObject ); cpPlugins_Id_Macro( InvertCostFunction, fpaImageAlgorithmFunctors ); protected: InvertCostFunction( ); virtual ~InvertCostFunction( ); virtual void _GenerateData( ) ITK_OVERRIDE; template< class _TScalar > inline void _GD0( ); private: // Purposely not implemented. InvertCostFunction( const Self& other ); Self& operator=( const Self& other ); }; } // ecapseman #endif // __FPAPLUGINS__INVERTCOSTFUNCTION__H__ // eof - $RCSfile$