]> Creatis software - clitk.git/commitdiff
create clitkDD.h to avoid the heavy dependency on clitkCommon.h only for DD
authorschaerer <schaerer>
Tue, 5 Oct 2010 14:16:36 +0000 (14:16 +0000)
committerschaerer <schaerer>
Tue, 5 Oct 2010 14:16:36 +0000 (14:16 +0000)
common/clitkCommon.h
common/clitkDD.h [new file with mode: 0644]
itk/clitkResampleImageWithOptionsFilter.txx

index 52264cd0258d8f1131a17e3b247b707f624e52d2..e3145b1d840425812feef4f2a6f4773c7073b90e 100644 (file)
@@ -20,8 +20,8 @@
 #define CLITKCOMMON_H
 
 // clitk include
-//#include "clitkConfiguration.h"
 #include "clitkPortability.h"
+#include "clitkDD.h"
 #include "clitkExceptionObject.h"
 
 // itk include (include std)
@@ -39,15 +39,6 @@ namespace clitk {
   typedef unsigned short ushort;
   typedef unsigned int uint;
 
-  //--------------------------------------------------------------------
-  // display 
-#define DD(a) std::cout << #a " = [ " << a << " ]" << std::endl;std::cout.flush();
-#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)
-    { for(typename T::const_iterator i=a.begin();i!=a.end();++i) { std::cout << *i << " "; };}
-#define DDS(a) { std::cout << #a " = [ "; _print_container(a) ; std::cout << " ]" << std::endl;std::cout.flush():}
-
   //--------------------------------------------------------------------
   // when everything goes wrong
 #define WHEREAMI "[ " << __FILE__  << " ] line " << __LINE__
diff --git a/common/clitkDD.h b/common/clitkDD.h
new file mode 100644 (file)
index 0000000..d5fa101
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef clitkDD_h
+#define clitkDD_h
+
+#include <iostream>
+
+// David's debug
+
+#define DD(a) std::cout << #a " = [ " << a << " ]" << std::endl;std::cout.flush();
+#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)
+    { for(typename T::const_iterator i=a.begin();i!=a.end();++i) { std::cout << *i << " "; };}
+#define DDS(a) { std::cout << #a " = [ "; _print_container(a) ; std::cout << " ]" << std::endl;std::cout.flush():}
+
+#endif
index 8e709d8c29dc9f10818d5daffdfffc82dfceeddd..7c05dc5b018644848ded74469216017e23b3769a 100644 (file)
@@ -17,7 +17,7 @@
   ======================================================================-====*/
 
 // clitk
-#include "clitkCommon.h"
+#include "clitkDD.h"
 
 // itk include
 #include "itkImage.h"