]> git.mxchange.org Git - simgear.git/blobdiff - simgear/math/interpolater.hxx
SG-ified logstream.
[simgear.git] / simgear / math / interpolater.hxx
index cc834073f8d33909cd72faba24bd9185557dc03d..f2553a5078f3570a64741f820c88b02ad7f4bdf7 100644 (file)
 #include <simgear/compiler.h>
 
 #include STL_STRING
-FG_USING_STD(string);
+SG_USING_STD(string);
 
 #define MAX_TABLE_SIZE 32
 
 
-class fgINTERPTABLE {
+class SGInterpTable {
     int size;
     double table[MAX_TABLE_SIZE][2];
 
@@ -48,13 +48,13 @@ public:
 
     // Constructor -- loads the interpolation table from the specified
     // file
-    fgINTERPTABLE( const string& file );
+    SGInterpTable( const string& file );
 
     // Given an x value, linearly interpolate the y value from the table
     double interpolate(double x);
 
     // Destructor
-    ~fgINTERPTABLE( void );
+    ~SGInterpTable( void );
 };