From 417ed7aeede528a2f646741a0c4d75beb6d52d64 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Sat, 25 Mar 2017 10:05:33 -0700 Subject: [PATCH] Add wren.hpp. --- src/include/wren.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/include/wren.hpp diff --git a/src/include/wren.hpp b/src/include/wren.hpp new file mode 100644 index 00000000..65b94daa --- /dev/null +++ b/src/include/wren.hpp @@ -0,0 +1,11 @@ +#ifndef wren_hpp +#define wren_hpp + +// This is a convenience header for users that want to compile Wren as C and +// link to it from a C++ application. + +extern "C" { + #include "wren.h" +} + +#endif