]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/socktest.cxx
remove CopyPolicy from ModelRegistry
[simgear.git] / simgear / io / socktest.cxx
index 358c32e08bde391bdc55392ba61b589747d480eb..83adfd2742cc22be9a5fbd2628d62b051c298323 100644 (file)
@@ -1,20 +1,23 @@
+#ifdef HAVE_CONFIG_H
+#  include <simgear_config.h>
+#endif
+
 #include <simgear/compiler.h>
 
 #include <unistd.h>
-#include STL_IOSTREAM
+#include <iostream>
 
 #include "sg_socket.hxx"
 #include "lowlevel.hxx"
 
-#if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
-SG_USING_STD(cout);
-SG_USING_STD(endl);
-#endif
-
 static const int sgEndianTest = 1;
 #define sgIsLittleEndian (*((char *) &sgEndianTest ) != 0)
 #define sgIsBigEndian    (*((char *) &sgEndianTest ) == 0)
 
+using std::cout;
+using std::endl;
+
+
 int main() {
 
     if ( sgIsLittleEndian ) {