Skip to content
Snippets Groups Projects
Commit c3ab600a authored by Mark Jenkinson's avatar Mark Jenkinson
Browse files

Fixed include paths for headers

parent 61a83750
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,10 @@ ...@@ -7,6 +7,10 @@
/* CCOPYRIGHT */ /* CCOPYRIGHT */
#include "Log.h" #include "Log.h"
#include <iostream>
#include <fstream>
#include <strstream>
#include <string>
namespace Utilities { namespace Utilities {
......
...@@ -17,6 +17,11 @@ determining streaming to the Logfile and/or cout. */ ...@@ -17,6 +17,11 @@ determining streaming to the Logfile and/or cout. */
#if !defined(log_h) #if !defined(log_h)
#define log_h #define log_h
#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
#include <strstream>
#include "newmat/newmatap.h" #include "newmat/newmatap.h"
#include "newmat/newmatio.h" #include "newmat/newmatio.h"
......
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
#if !defined(OPTIONS_H) #if !defined(OPTIONS_H)
#define OPTIONS_H #define OPTIONS_H
#include <stdexcept>
#include <string>
#include <vector>
#include <iostream>
#define POSIX_SOURCE 1 #define POSIX_SOURCE 1
......
...@@ -7,6 +7,11 @@ ...@@ -7,6 +7,11 @@
/* CCOPYRIGHT */ /* CCOPYRIGHT */
#include "time_tracer.h" #include "time_tracer.h"
#include <iostream>
#include <fstream>
#include <strstream>
#include <string>
#include <set>
namespace Utilities { namespace Utilities {
......
...@@ -9,6 +9,13 @@ ...@@ -9,6 +9,13 @@
#if !defined(Time_Tracer_h) #if !defined(Time_Tracer_h)
#define 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; using namespace std;
......
...@@ -9,6 +9,11 @@ ...@@ -9,6 +9,11 @@
#if !defined(Tracer_Plus_h) #if !defined(Tracer_Plus_h)
#define Tracer_Plus_h #define Tracer_Plus_h
#include <iostream>
#include <fstream>
#include <string>
#include <time.h>
#include <set>
#include "newmat/newmatap.h" #include "newmat/newmatap.h"
#include "newmat/newmatio.h" #include "newmat/newmatio.h"
#include "time_tracer.h" #include "time_tracer.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment