]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/decode_binobj.cxx
hla: Use HLADataElementIndices for HLAInteractionClass.
[simgear.git] / simgear / io / decode_binobj.cxx
index af2ae2b9f2e4d0a99d21d150b298be82bd7b1779..41880e1257a80c839a43911207835c47a4f0ff3a 100644 (file)
 
 #include <iostream>
 #include <cstdlib>
+#include <cstdio>
 
 #include "sg_binobj.hxx"
+#include <simgear/debug/logstream.hxx>
 
 using std::cout;
 using std::endl;
@@ -24,6 +26,9 @@ int main( int argc, char **argv ) {
     if ( argc != 2 ) {
         cout << "Usage: " << argv[0] << " binary_obj_file" << endl;
     }
+    
+    
+    sglog().setLogLevels( SG_ALL, SG_ALERT );
 
     SGBinObject obj;
     bool result = obj.read_bin( argv[1] );