]> git.mxchange.org Git - flightgear.git/blobdiff - src/Navaids/fixlist.hxx
Added marker beacon sound effects.
[flightgear.git] / src / Navaids / fixlist.hxx
index cfd61a77d81b05db0d1b13afff66dc4d549fd8b2..75d48e2440751424173025656ef041147152b0da 100644 (file)
@@ -26,7 +26,7 @@
 
 
 #include <simgear/compiler.h>
-#include <simgear/misc/fgpath.hxx>
+#include <simgear/misc/sg_path.hxx>
 
 #include <map>
 #include <vector>
 
 #include "fix.hxx"
 
-FG_USING_STD(map);
-FG_USING_STD(vector);
-FG_USING_STD(string);
+SG_USING_STD(map);
+SG_USING_STD(vector);
+SG_USING_STD(string);
 
 
 class FGFixList {
 
-    typedef map < string, FGFix, less<string> > fix_map_type;
+    // typedef map < string, FGFix, less<string> > fix_map_type;
+    typedef map < string, FGFix > fix_map_type;
     typedef fix_map_type::iterator fix_map_iterator;
     typedef fix_map_type::const_iterator fix_map_const_iterator;
 
@@ -53,7 +54,7 @@ public:
     ~FGFixList();
 
     // load the navaids and build the map
-    bool init( FGPath path );
+    bool init( SGPath path );
 
     // query the database for the specified frequency, lon and lat are
     // in degrees, elev is in meters