]> git.donarmstrong.com Git - mothur.git/blobdiff - mothurout.h
removed unused copy constructors and comments within comments that where causing...
[mothur.git] / mothurout.h
index d2a36b351902f3bc25d7c2132fb2c20f15421b23..12de987e231247a4fb195aef20054bd94dacd375 100644 (file)
 
 #include "mothur.h"
 
+/***********************************************/
+struct logger {
+    
+    logger() {}
+    ~logger() {}
+    
+    template< class T >
+    logger& operator <<( const T& o ) {
+        cout << o; return *this;
+    }
+    
+    logger& operator<<(ostream& (*m)(ostream&) ) {
+        cout << m; return *this;
+    }
+    
+}; 
 /***********************************************/
 
 class MothurOut {