X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fmath%2Finterpolater.hxx;h=393e39ffb267ba58c3bfe0505d1a8f1fda2903db;hb=578af00b0d48100c540154f54293a1b77a0655fe;hp=8be1c672aeadc0a08d2268dcbe573cc4614f2ed1;hpb=f30c4720ae6de72a9b6eab219ebde0b07a517ede;p=simgear.git diff --git a/simgear/math/interpolater.hxx b/simgear/math/interpolater.hxx index 8be1c672..393e39ff 100644 --- a/simgear/math/interpolater.hxx +++ b/simgear/math/interpolater.hxx @@ -18,10 +18,9 @@ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Library General Public License for more details. // -// You should have received a copy of the GNU Library General Public -// License along with this library; if not, write to the -// Free Software Foundation, Inc., 59 Temple Place - Suite 330, -// Boston, MA 02111-1307, USA. +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // // $Id$ @@ -30,18 +29,20 @@ #define _INTERPOLATER_H -#ifndef __cplusplus +#ifndef __cplusplus # error This library requires C++ -#endif +#endif #include -#include -SG_USING_STD(vector); +#include -#include STL_STRING -SG_USING_STD(string); +#include +#include +using std::string; + +class SGPropertyNode; /** * A class that provids a simple linear 2d interpolation lookup table. @@ -49,21 +50,7 @@ SG_USING_STD(string); * independant variable must be strictly ascending. The dependent * variable can be anything. */ -class SGInterpTable { - - struct Entry - { - Entry () - : ind(0.0L), dep(0.0L) {} - Entry (double independent, double dependent) - : ind(independent), dep(dependent) {} - double ind; - double dep; - }; - - int size; - vector table; - +class SGInterpTable : public SGReferenced { public: /** @@ -71,6 +58,13 @@ public: */ SGInterpTable(); + /** + * Constructor. Loads the interpolation table from an interpolation + * property node. + * @param interpolation property node having entry children + */ + SGInterpTable(const SGPropertyNode* interpolation); + /** * Constructor. Loads the interpolation table from the specified file. * @param file name of interpolation file @@ -96,6 +90,10 @@ public: /** Destructor */ ~SGInterpTable(); + +private: + typedef std::map Table; + Table _table; };