From 677c924eccb2662e9767ab936f0962d70ec2b4dc Mon Sep 17 00:00:00 2001
From: Christian Beckmann <c.beckmann@donders.ru.nl>
Date: Fri, 1 Nov 2002 18:25:49 +0000
Subject: [PATCH] gcc3 changes

---
 log.h | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/log.h b/log.h
index ac0f9aa..8b0071f 100644
--- a/log.h
+++ b/log.h
@@ -20,6 +20,7 @@ determining streaming to the Logfile and/or cout. */
 #include <iostream>
 #include <fstream>
 #include <string>
+#include <iomanip>
 #include <strstream>
 #include "newmatap.h"
 #include "newmatio.h"
@@ -134,6 +135,8 @@ namespace Utilities{
       bool stream_to_logfile;
       bool stream_to_cout;
 
+      friend Log& operator<<(Log& log, ostream& (*obj) (ostream &));
+
       template<class t> 
 	friend Log& operator<<(Log& log, const t& obj); 
 
@@ -214,6 +217,18 @@ namespace Utilities{
     return dir + "/" + filename;
   }
 
+
+  inline Log& operator<<(Log& log, ostream& (*obj)(ostream &))
+    {
+      if(log.stream_to_logfile)
+ 	log.logfileout << obj;
+      
+      if(log.stream_to_cout)
+  	cout << obj;
+      
+      return log;
+    }
+  
 }
 
 #endif
-- 
GitLab