// dump out a gdbm version of the simple airport file #include #include STL_IOSTREAM #include #include "simple.hxx" SG_USING_STD(cout); SG_USING_STD(endl); int main( int argc, char **argv ) { FGAirportsUtil airports; FGAirport a; sglog().setLogLevels( SG_ALL, SG_INFO ); if ( argc == 3 ) { airports.load( argv[1] ); airports.dump_mk4( argv[2] ); } else { cout << "usage: " << argv[0] << " " << endl; } // FGAirports airport_db( argv[2] ); // airport_db.search( "KANEZZZ", &a ); }