]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/genrunways.cxx
Moved some of the low level scene graph construction code over to simgear.
[flightgear.git] / src / Airports / genrunways.cxx
index d81f7474ceb97378078f570fab63dff7327d0294..f3b4c4709ed0fa2a6466cc6c7f8469d9fa7f9a10 100644 (file)
@@ -1,11 +1,22 @@
 // dump out a gdbm version of the simple airport file
 
+#include <simgear/compiler.h>
+
+#include STL_IOSTREAM
+
+#include <simgear/debug/logstream.hxx>
+
 #include "runways.hxx"
 
+SG_USING_STD(cout);
+SG_USING_STD(endl);
+
 int main( int argc, char **argv ) {
     FGRunwaysUtil runways;
     FGRunway r;
 
+    sglog().setLogLevels( SG_ALL, SG_INFO );
+
     if ( argc == 3 ) {
        runways.load( argv[1] );
        runways.dump_mk4( argv[2] );