From: Loïc Collignon Date: Fri, 4 Jan 2019 14:22:27 +0000 (+0100) Subject: Avoid relative path when including headers X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=48d4b06fc2b24aa9f31e418247a712665d45347c Avoid relative path when including headers Prefer the system path to include headers. Change-Id: Id20d7c07b628bb8da25abeef3bc10456693a93f9 Signed-off-by: Loïc Collignon --- diff --git a/include/afb/afb-binding b/include/afb/afb-binding index 46e671d2..364252c3 100644 --- a/include/afb/afb-binding +++ b/include/afb/afb-binding @@ -15,6 +15,5 @@ * limitations under the License. */ #pragma once -#include "c++/binding-wrap.hpp" -#include "c++/binding-object.hpp" - +#include +#include diff --git a/include/afb/c++/binding b/include/afb/c++/binding index 5858dff7..0cce021b 100644 --- a/include/afb/c++/binding +++ b/include/afb/c++/binding @@ -15,5 +15,6 @@ * limitations under the License. */ #pragma once -#include "binding-wrap.hpp" -#include "binding-object.hpp" +#include +#include + diff --git a/include/afb/c++/binding-object.hpp b/include/afb/c++/binding-object.hpp index 9a9e5b6e..65341362 100644 --- a/include/afb/c++/binding-object.hpp +++ b/include/afb/c++/binding-object.hpp @@ -17,7 +17,9 @@ * limitations under the License. */ -#include "../afb-binding.h" +extern "C" { +#include +} #include #include diff --git a/include/afb/c++/binding-wrap.hpp b/include/afb/c++/binding-wrap.hpp index 21847722..f3747dde 100644 --- a/include/afb/c++/binding-wrap.hpp +++ b/include/afb/c++/binding-wrap.hpp @@ -34,7 +34,7 @@ /* get C definitions of bindings */ extern "C" { -#include "afb-binding.h" +#include } namespace afb {