]> Creatis software - FrontAlgorithms.git/blob - plugins/fpa/InvertCostFunction.h
...
[FrontAlgorithms.git] / plugins / fpa / InvertCostFunction.h
1 #ifndef __FPAPLUGINS__INVERTCOSTFUNCTION__H__
2 #define __FPAPLUGINS__INVERTCOSTFUNCTION__H__
3
4 #include <fpa/fpaPlugins_Export.h>
5 #include <cpPlugins/ProcessObject.h>
6
7 namespace fpaPlugins
8 {
9   /**
10    */
11   class fpaPlugins_EXPORT InvertCostFunction
12     : public cpPlugins::ProcessObject
13   {
14   public:
15     typedef InvertCostFunction              Self;
16     typedef cpPlugins::ProcessObject        Superclass;
17     typedef itk::SmartPointer< Self >       Pointer;
18     typedef itk::SmartPointer< const Self > ConstPointer;
19
20   public:
21     itkNewMacro( Self );
22     itkTypeMacro( InvertCostFunction, cpPlugins::ProcessObject );
23     cpPlugins_Id_Macro( InvertCostFunction, fpaImageAlgorithmFunctors );
24
25   protected:
26     InvertCostFunction( );
27     virtual ~InvertCostFunction( );
28
29     virtual void _GenerateData( ) ITK_OVERRIDE;
30
31     template< class _TScalar >
32       inline void _GD0( );
33
34   private:
35     // Purposely not implemented.
36     InvertCostFunction( const Self& other );
37     Self& operator=( const Self& other );
38   };
39
40 } // ecapseman
41
42 #endif // __FPAPLUGINS__INVERTCOSTFUNCTION__H__
43
44 // eof - $RCSfile$