1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
// File: AdvApprox_EvaluatorFunction.hxx
// Created: Mon May 29 17:04:50 1995
// Author: Xavier BENVENISTE
// <xab@nonox>
#ifndef _Standard_Integer_HeaderFile
#include <Standard_Integer.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
#ifndef _Standard_PrimitiveTypes_HeaderFile
#include <Standard_PrimitiveTypes.hxx>
#endif
#ifndef _AdvApprox_EvaluatorFunction_HeaderFile
#define _AdvApprox_EvaluatorFunction_HeaderFile
// abv 01.04.2009: the C function pointer converted to a virtual class
// in order to get rid of usage of static functions and static data
//! Interface for a class implementing a function to be approximated
//! by AdvApprox_ApproxAFunction
class AdvApprox_EvaluatorFunction
{
public:
//! Empty constructor
AdvApprox_EvaluatorFunction () {}
//! Destructor should be declared as virtual
virtual ~AdvApprox_EvaluatorFunction () {}
//! Function evaluation method to be defined by descendant
virtual void Evaluate (Standard_Integer *Dimension,
Standard_Real StartEnd[2],
Standard_Real *Parameter,
Standard_Integer *DerivativeRequest,
Standard_Real *Result, // [Dimension]
Standard_Integer *ErrorCode) = 0;
//! Shortcut for function-call style usage
void operator () (Standard_Integer *Dimension,
Standard_Real StartEnd[2],
Standard_Real *Parameter,
Standard_Integer *DerivativeRequest,
Standard_Real *Result, // [Dimension]
Standard_Integer *ErrorCode)
{ Evaluate (Dimension, StartEnd, Parameter, DerivativeRequest, Result, ErrorCode); }
private:
//! Copy constructor is declared private to forbid copying
AdvApprox_EvaluatorFunction (const AdvApprox_EvaluatorFunction&) {}
//! Assignment operator is declared private to forbid copying
void operator = (const AdvApprox_EvaluatorFunction&) {}
};
#endif
|