aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/afb/afb-binding5
-rw-r--r--include/afb/c++/binding5
-rw-r--r--include/afb/c++/binding-object.hpp4
-rw-r--r--include/afb/c++/binding-wrap.hpp2
4 files changed, 9 insertions, 7 deletions
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 <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..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 <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 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 <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 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 <afb/afb-binding.h>
}
namespace afb {