Add wren.hpp.

This commit is contained in:
Bob Nystrom
2017-03-25 10:05:33 -07:00
parent b32c445f96
commit 417ed7aeed

11
src/include/wren.hpp Normal file
View File

@ -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