From 0311c1672dbdd7e0349e79af400f85bdda15e7d8 Mon Sep 17 00:00:00 2001 From: Ronaldd Pinho Date: Sun, 30 Jun 2019 13:29:10 -0300 Subject: [PATCH] Relative includes in other/ directory, all files --- eo/src/other/eoExternalEO.h | 2 +- eo/src/other/eoExternalOpFunctions.h | 8 ++++---- eo/src/other/eoString.h | 3 +-- eo/src/other/external_eo | 4 ++-- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/eo/src/other/eoExternalEO.h b/eo/src/other/eoExternalEO.h index 4440b428f..cb37206b8 100644 --- a/eo/src/other/eoExternalEO.h +++ b/eo/src/other/eoExternalEO.h @@ -26,7 +26,7 @@ #ifndef eoExternalEO_h #define eoExternalEO_h -#include // EO +#include "../EO.h" // EO /** * Definition of an object that allows an external struct diff --git a/eo/src/other/eoExternalOpFunctions.h b/eo/src/other/eoExternalOpFunctions.h index d86b49c45..75455f079 100644 --- a/eo/src/other/eoExternalOpFunctions.h +++ b/eo/src/other/eoExternalOpFunctions.h @@ -28,10 +28,10 @@ #ifndef eoExternalOpFunc_h #define eoExternalOpFunc_h -#include -#include -#include -#include +#include "eoExternalEO.h" +#include "../eoOp.h" +#include "../eoInit.h" +#include "../eoEvalFunc.h" /** Initialization of external struct, ctor expects a function of the following diff --git a/eo/src/other/eoString.h b/eo/src/other/eoString.h index 3071d1ee6..2fff076ee 100644 --- a/eo/src/other/eoString.h +++ b/eo/src/other/eoString.h @@ -30,8 +30,7 @@ #include #include - -#include +#include "../EO.h" //----------------------------------------------------------------------------- // eoString diff --git a/eo/src/other/external_eo b/eo/src/other/external_eo index aeaaaab6b..449053a05 100644 --- a/eo/src/other/external_eo +++ b/eo/src/other/external_eo @@ -1,2 +1,2 @@ -#include -#include +#include "eoExternalEO.h" +#include "eoExternalOpFunctions.h"