diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/afb/afb-binding | 5 | ||||
-rw-r--r-- | include/afb/c++/binding | 4 | ||||
-rw-r--r-- | include/afb/c++/binding-object.hpp | 4 | ||||
-rw-r--r-- | include/afb/c++/binding-wrap.hpp | 2 |
4 files changed, 8 insertions, 7 deletions
diff --git a/include/afb/afb-binding b/include/afb/afb-binding index a961a408..a76653a1 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 <afb/c++/binding-wrap.hpp> +#include <afb/c++/binding-object.hpp> diff --git a/include/afb/c++/binding b/include/afb/c++/binding index 5858dff7..364252c3 100644 --- a/include/afb/c++/binding +++ b/include/afb/c++/binding @@ -15,5 +15,5 @@ * limitations under the License. */ #pragma once -#include "binding-wrap.hpp" -#include "binding-object.hpp" +#include <afb/c++/binding-wrap.hpp> +#include <afb/c++/binding-object.hpp> diff --git a/include/afb/c++/binding-object.hpp b/include/afb/c++/binding-object.hpp index f9c3bcab..b85331cd 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 <afb/afb-binding.h> +} #include <cassert> #include <string> diff --git a/include/afb/c++/binding-wrap.hpp b/include/afb/c++/binding-wrap.hpp index 0cb64423..deba2c8e 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 <afb/afb-binding.h> } namespace afb { |