]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/decode_binobj.cxx
Ensure individual log-level setting works.
[simgear.git] / simgear / io / decode_binobj.cxx
index 2865db5700d5bad2d1ac269e9da85267f37cd92a..41880e1257a80c839a43911207835c47a4f0ff3a 100644 (file)
@@ -4,13 +4,19 @@
 
 #include <simgear/compiler.h>
 
+#ifndef _WIN32
 #include <unistd.h>
-#include STL_IOSTREAM
+#endif
+
+#include <iostream>
+#include <cstdlib>
+#include <cstdio>
 
 #include "sg_binobj.hxx"
+#include <simgear/debug/logstream.hxx>
 
-SG_USING_STD(cout);
-SG_USING_STD(endl);
+using std::cout;
+using std::endl;
 
 
 int main( int argc, char **argv ) {
@@ -20,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] );
@@ -63,7 +72,7 @@ int main( int argc, char **argv ) {
     cout << "# geometry groups" << endl;
     cout << endl;
 
-    string material;
+    std::string material;
     int_list vertex_index;
     int_list normal_index;
     int_list tex_index;