]> git.mxchange.org Git - flightgear.git/blobdiff - src/WeatherCM/FGWeatherParse.h
Moved JSBSim.hxx to src/FDM/JSBSim/
[flightgear.git] / src / WeatherCM / FGWeatherParse.h
index 68077db27cf5bc933bc35ea4358df0aa2b9a4fde..5b51681f641affb4b5ed0f1280c82b5c39c360e3 100644 (file)
@@ -49,6 +49,7 @@ You can also visit his homepage at http://www.wetterzentrale.de
 HISTORY
 ------------------------------------------------------------------------------
 18.10.1999 Christian Mayer     Created
+14.12.1999 Christian Mayer     minor internal changes
 *****************************************************************************/
 
 /****************************************************************************/
@@ -60,17 +61,21 @@ HISTORY
 /****************************************************************************/
 /* INCLUDES                                                                */
 /****************************************************************************/
-#include <Include/compiler.h>
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
+#include <simgear/compiler.h>
 #include <vector>
 
-#include <Misc/fgstream.hxx>
+#include <simgear/misc/sgstream.hxx>
 
 #include "FGPhysicalProperties.h"
 
 /****************************************************************************/
 /* DEFINES                                                                 */
 /****************************************************************************/
-FG_USING_STD(vector);
+SG_USING_STD(vector);
 
 /****************************************************************************/
 /* CLASS DECLARATION                                                       */
@@ -121,7 +126,8 @@ public:
        return weather_station[nr];
     }
 
-    FGPhysicalProperties2D getFGPhysicalProperties2D(const unsigned int nr) const;
+    FGPhysicalProperties getFGPhysicalProperties(const unsigned int nr) const;
+    void getPosition(const unsigned int nr, sgVec2 pos) const;
 };
 
 /****************************************************************************/