From 212f5d66bfac7fecb48f4589e608c0299d04efe5 Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 28 Aug 2003 21:04:12 +0000 Subject: [PATCH] Depricated ... --- src/Airports/gensimple.cxx | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/Airports/gensimple.cxx diff --git a/src/Airports/gensimple.cxx b/src/Airports/gensimple.cxx deleted file mode 100644 index 0d9f60850..000000000 --- a/src/Airports/gensimple.cxx +++ /dev/null @@ -1,30 +0,0 @@ -// 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 ); - -}