From c3ab600a96b0174b2ac7c82ed0c557ceb1e4595a Mon Sep 17 00:00:00 2001
From: Mark Jenkinson <mark@fmrib.ox.ac.uk>
Date: Sat, 22 Feb 2003 18:39:26 +0000
Subject: [PATCH] Fixed include paths for headers

---
 Log.cc         | 4 ++++
 log.h          | 5 +++++
 options.h      | 4 ++++
 time_tracer.cc | 5 +++++
 time_tracer.h  | 7 +++++++
 tracer_plus.h  | 5 +++++
 6 files changed, 30 insertions(+)

diff --git a/Log.cc b/Log.cc
index ff33d93..679b455 100644
--- a/Log.cc
+++ b/Log.cc
@@ -7,6 +7,10 @@
 /*  CCOPYRIGHT  */
 
 #include "Log.h"
+#include <iostream>
+#include <fstream>
+#include <strstream>
+#include <string>
 
 namespace Utilities {
 
diff --git a/log.h b/log.h
index 92f0659..25014a4 100644
--- a/log.h
+++ b/log.h
@@ -17,6 +17,11 @@ determining streaming to the Logfile and/or cout. */
 #if !defined(log_h)
 #define log_h
 
+#include <iostream>
+#include <fstream>
+#include <string>
+#include <iomanip>
+#include <strstream>
 #include "newmat/newmatap.h"
 #include "newmat/newmatio.h"
 
diff --git a/options.h b/options.h
index 2d3fa5a..a8c0c12 100644
--- a/options.h
+++ b/options.h
@@ -2,6 +2,10 @@
 #if !defined(OPTIONS_H)
 #define OPTIONS_H
 
+#include <stdexcept>
+#include <string>
+#include <vector>
+#include <iostream>
 
 #define POSIX_SOURCE 1
 
diff --git a/time_tracer.cc b/time_tracer.cc
index e66d405..31d3e4f 100644
--- a/time_tracer.cc
+++ b/time_tracer.cc
@@ -7,6 +7,11 @@
 /*  CCOPYRIGHT  */
 
 #include "time_tracer.h"
+#include <iostream>
+#include <fstream>
+#include <strstream>
+#include <string>
+#include <set>
 
 namespace Utilities {
 
diff --git a/time_tracer.h b/time_tracer.h
index a4d83f2..171453b 100644
--- a/time_tracer.h
+++ b/time_tracer.h
@@ -9,6 +9,13 @@
 #if !defined(Time_Tracer_h)
 #define Time_Tracer_h
 
+#include <iostream>
+#include <fstream>
+#include <string>
+#include <time.h>
+#include <set>
+#include <stack>
+#include <iterator>
 
 using namespace std;
 
diff --git a/tracer_plus.h b/tracer_plus.h
index 44dc321..1efe1ae 100644
--- a/tracer_plus.h
+++ b/tracer_plus.h
@@ -9,6 +9,11 @@
 #if !defined(Tracer_Plus_h)
 #define Tracer_Plus_h
 
+#include <iostream>
+#include <fstream>
+#include <string>
+#include <time.h>
+#include <set>
 #include "newmat/newmatap.h"
 #include "newmat/newmatio.h"
 #include "time_tracer.h"
-- 
GitLab