1
0
Fork 0

Build gdbm database from original text file.

This commit is contained in:
curt 2000-03-29 20:23:28 +00:00
parent 3b34980556
commit 7db09cfd2f

View file

@ -0,0 +1,15 @@
// 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_gdbm( argv[2] );
} else {
cout << "usage: " << argv[0] << " <in> <out>" << endl;
}
}