00001 #ifndef _AContrastFunction_H 00002 #define _AContrastFunction_H 00003 00004 00005 00027 class AContrastFunction 00028 { 00029 public: 00030 virtual ~AContrastFunction(){} 00031 00032 virtual double G(double u)=0; 00033 virtual double g(double u)=0; 00034 virtual double gdiff(double u)=0; 00035 }; 00036 00037 #endif