]> Creatis software - clitk.git/commitdiff
Use OutputDebugString for DD on Windows
authorSimon Rit <simon.rit@creatis.insa-lyon.fr>
Mon, 30 May 2011 07:35:27 +0000 (09:35 +0200)
committerSimon Rit <simon.rit@creatis.insa-lyon.fr>
Mon, 30 May 2011 07:35:27 +0000 (09:35 +0200)
common/clitkDD.h

index c5b52951b4851c48260fdcea17425df7549c8fbc..f43db9d005d9ef9d98f4b6ca4dc66bb5713b8b66 100644 (file)
 #define clitkDD_h
 
 #include <iostream>
-
+#ifdef WIN32
+# include <windows.h>
+#endif
 // David's debug
 
-#define DD(a) std::cout << #a " = [ " << a << " ]" << std::endl;std::cout.flush();
+#ifdef WIN32
+# define DD(a) { \
+    std::ostringstream ossDD; \
+    ossDD << #a " = [ " << a << " ]" << std::endl; \
+    OutputDebugString(ossDD.str().c_str()); \
+  }
+#else
+# define DD(a) std::cout << #a " = [ " << a << " ]" << std::endl;std::cout.flush();
+#endif
 #define DDV(a,n) { std::cout << #a " = [ "; for(unsigned int _i_=0; _i_<n; _i_++) { std::cout << a[_i_] << " "; }; std::cout << " ]" << std::endl;std::cout.flush();}
   template<class T>
     void _print_container(T const& a)