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 @@
/* CCOPYRIGHT */
#include "Log.h"
#include <iostream>
#include <fstream>
#include <strstream>
#include <string>
namespace Utilities {
......
......@@ -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"
......
......@@ -2,6 +2,10 @@
#if !defined(OPTIONS_H)
#define OPTIONS_H
#include <stdexcept>
#include <string>
#include <vector>
#include <iostream>
#define POSIX_SOURCE 1
......
......@@ -7,6 +7,11 @@
/* CCOPYRIGHT */
#include "time_tracer.h"
#include <iostream>
#include <fstream>
#include <strstream>
#include <string>
#include <set>
namespace Utilities {
......
......@@ -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;
......
......@@ -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"
......
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