]> git.mxchange.org Git - flightgear.git/commitdiff
Depricated ...
authorcurt <curt>
Thu, 28 Aug 2003 21:04:12 +0000 (21:04 +0000)
committercurt <curt>
Thu, 28 Aug 2003 21:04:12 +0000 (21:04 +0000)
src/Airports/gensimple.cxx [deleted file]

diff --git a/src/Airports/gensimple.cxx b/src/Airports/gensimple.cxx
deleted file mode 100644 (file)
index 0d9f608..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// dump out a gdbm version of the simple airport file
-
-#include <simgear/compiler.h>
-
-#include STL_IOSTREAM
-
-#include <simgear/debug/logstream.hxx>
-
-#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] << " <in> <out>" << endl;
-    }
-
-    // FGAirports airport_db( argv[2] );
-    // airport_db.search( "KANEZZZ", &a );
-
-}