00001
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _INTERPOLATER_H
00029 #define _INTERPOLATER_H
00030
00031
00032 #ifndef __cplusplus
00033 # error This library requires C++
00034 #endif
00035
00036 #include <simgear/compiler.h>
00037
00038 #include <simgear/structure/SGReferenced.hxx>
00039
00040 #include <map>
00041
00042 #include <string>
00043 using std::string;
00044
00045 class SGPropertyNode;
00046
00053 class SGInterpTable : public SGReferenced {
00054 public:
00055
00059 SGInterpTable();
00060
00066 SGInterpTable(const SGPropertyNode* interpolation);
00067
00072 SGInterpTable( const string& file );
00073
00074
00081 void addEntry (double ind, double dep);
00082
00083
00089 double interpolate(double x) const;
00090
00092 ~SGInterpTable();
00093
00094 private:
00095 typedef std::map<double, double> Table;
00096 Table _table;
00097 };
00098
00099
00100 #endif // _INTERPOLATER_H
00101
00102