Use relative includes in headers and absolute in code

- relative includes in headers
- absolute includes in exe code
- include sstream lib in eoExceptions.h
- fix ga/make_op_ga.cpp
- fix eoSGATransform.h
This commit is contained in:
Ronaldd Pinho 2019-06-29 18:44:27 -03:00 committed by nojhan
commit aa5dbe82c6
284 changed files with 996 additions and 989 deletions

View file

@ -26,7 +26,7 @@
#ifndef eoExternalEO_h
#define eoExternalEO_h
#include <EO.h> // EO
#include "../EO.h" // EO
/**
* Definition of an object that allows an external struct

View file

@ -28,10 +28,10 @@
#ifndef eoExternalOpFunc_h
#define eoExternalOpFunc_h
#include <other/eoExternalEO.h>
#include <eoOp.h>
#include <eoInit.h>
#include <eoEvalFunc.h>
#include "eoExternalEO.h"
#include "../eoOp.h"
#include "../eoInit.h"
#include "../eoEvalFunc.h"
/**
Initialization of external struct, ctor expects a function of the following

View file

@ -30,8 +30,7 @@
#include <string>
#include <stdexcept>
#include <EO.h>
#include "../EO.h"
//-----------------------------------------------------------------------------
// eoString

View file

@ -1,2 +1,2 @@
#include <other/eoExternalEO.h>
#include <other/eoExternalOpFunctions.h>
#include "eoExternalEO.h"
#include "eoExternalOpFunctions.h"