1
0
Fork 0
flightgear/src/Airports/gensimple.cxx

20 lines
409 B
C++
Raw Normal View History

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