00001 
00002 
00004 
00005 #if !defined(AFX_PARAMETERFILTER_H__D1090E8B_3BE2_4921_8675_A20E94462AAC__INCLUDED_)
00006 #define AFX_PARAMETERFILTER_H__D1090E8B_3BE2_4921_8675_A20E94462AAC__INCLUDED_
00007 
00008 #if _MSC_VER > 1000
00009 #pragma once
00010 #endif // _MSC_VER > 1000
00011 
00012 #include <cmath>
00013 #include <stdexcept>
00014 
00015 class CParameterFilter  
00016 {
00017 public:
00018         CParameterFilter();
00019         virtual ~CParameterFilter();
00020         virtual void ForwardTransformation(double *parameters, int nParameters);
00021         virtual void BackwardTransformation(double *parameters, int nParameters);
00022         virtual double Operator(double operand) = 0;
00023         virtual double OperatorInverse(double operand) = 0;
00024 };
00025 
00026 #endif // !defined(AFX_PARAMETERFILTER_H__D1090E8B_3BE2_4921_8675_A20E94462AAC__INCLUDED_)