summaryrefslogtreecommitdiff
path: root/Examples/ocaml/std_string/example.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/ocaml/std_string/example.i')
-rw-r--r--Examples/ocaml/std_string/example.i12
1 files changed, 12 insertions, 0 deletions
diff --git a/Examples/ocaml/std_string/example.i b/Examples/ocaml/std_string/example.i
new file mode 100644
index 0000000..7b144ea
--- /dev/null
+++ b/Examples/ocaml/std_string/example.i
@@ -0,0 +1,12 @@
+/* -*- C++ -*- */
+/* File : example.i -- stolen from the guile std_vector example */
+%module example
+
+%{
+#include "example.h"
+%}
+
+%include stl.i
+
+/* Let's just grab the original header file here */
+%include "example.h"