From 41564ecb69bd82d5263ad656c09a94960be618d8 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Fri, 15 Aug 2014 19:47:10 +0200
Subject: [PATCH] Specify full path in #include.

This is required for an upcoming application.
It was already discussed in #89 and will come up
with more changes as the application grows. So
step by step all #includes will have the full
paths prepended.
---
 FileIO/XmlIO/XMLInterface.h | 2 +-
 GeoLib/AABB.h               | 2 +-
 GeoLib/Point.h              | 2 +-
 OGS/GeoInfo.h               | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/FileIO/XmlIO/XMLInterface.h b/FileIO/XmlIO/XMLInterface.h
index 38ef612d400..5992edff659 100644
--- a/FileIO/XmlIO/XMLInterface.h
+++ b/FileIO/XmlIO/XMLInterface.h
@@ -17,7 +17,7 @@
 
 #include "OGS/ProjectData.h"
 
-#include "Writer.h"
+#include "FileIO/Writer.h"
 
 namespace FileIO
 {
diff --git a/GeoLib/AABB.h b/GeoLib/AABB.h
index 24cc8651e25..3e8d850a6eb 100644
--- a/GeoLib/AABB.h
+++ b/GeoLib/AABB.h
@@ -22,7 +22,7 @@
 #include <vector>
 #include <stdexcept>
 
-#include "MathTools.h"
+#include "MathLib/MathTools.h"
 #include "Point.h"
 
 namespace GeoLib
diff --git a/GeoLib/Point.h b/GeoLib/Point.h
index d5e26e6e7ee..8145c351fa0 100644
--- a/GeoLib/Point.h
+++ b/GeoLib/Point.h
@@ -22,7 +22,7 @@
 #include "GeoObject.h"
 
 // MathLib
-#include "TemplatePoint.h"
+#include "MathLib/TemplatePoint.h"
 
 namespace GeoLib
 {
diff --git a/OGS/GeoInfo.h b/OGS/GeoInfo.h
index 62e869a78a4..3771710497a 100644
--- a/OGS/GeoInfo.h
+++ b/OGS/GeoInfo.h
@@ -16,8 +16,8 @@
 #define GEOINFO_H_
 
 // GEO
-#include "GeoObject.h"
-#include "GeoType.h"
+#include "GeoLib/GeoObject.h"
+#include "GeoLib/GeoType.h"
 
 /**
  * \brief GeoInfo stores the type of the geometric entity and
-- 
GitLab