]> git.mxchange.org Git - simgear.git/blobdiff - simgear/serial/serial.hxx
OS-X specific sleep helper, more stable.
[simgear.git] / simgear / serial / serial.hxx
index d2c1f838cd8053f18e5151f83e09bb90d46370c0..6e9ec8dd0a5c355e9330c3bc21d942e96a022eaf 100644 (file)
 # error This library requires C++
 #endif
 
-#if defined( WIN32 ) && !defined( __CYGWIN__) && !defined( __CYGWIN32__ )
+#ifdef _WIN32
 #  include <windows.h>
 #endif
 
 #include <simgear/compiler.h>
 #include <string>
-SG_USING_STD(string);
+using std::string;
 
 // if someone know how to do this all with C++ streams let me know
 // #include <stdio.h>
@@ -49,7 +49,7 @@ SG_USING_STD(string);
  */
 class SGSerialPort
 {
-#if defined( WIN32 ) && !defined( __CYGWIN__) && !defined( __CYGWIN32__ )
+#ifdef  _WIN32
     typedef HANDLE fd_type;
 #else
     typedef int fd_type;