Skip to content
Snippets Groups Projects
Commit 41564ecb authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Dmitrij Naumov
Browse files

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.
parent 8d756ea4
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#include "OGS/ProjectData.h" #include "OGS/ProjectData.h"
#include "Writer.h" #include "FileIO/Writer.h"
namespace FileIO namespace FileIO
{ {
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include <vector> #include <vector>
#include <stdexcept> #include <stdexcept>
#include "MathTools.h" #include "MathLib/MathTools.h"
#include "Point.h" #include "Point.h"
namespace GeoLib namespace GeoLib
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "GeoObject.h" #include "GeoObject.h"
// MathLib // MathLib
#include "TemplatePoint.h" #include "MathLib/TemplatePoint.h"
namespace GeoLib namespace GeoLib
{ {
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
#define GEOINFO_H_ #define GEOINFO_H_
// GEO // GEO
#include "GeoObject.h" #include "GeoLib/GeoObject.h"
#include "GeoType.h" #include "GeoLib/GeoType.h"
/** /**
* \brief GeoInfo stores the type of the geometric entity and * \brief GeoInfo stores the type of the geometric entity and
......
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