diff options
Diffstat (limited to 'Examples/python/class/example.i')
-rw-r--r-- | Examples/python/class/example.i | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Examples/python/class/example.i b/Examples/python/class/example.i new file mode 100644 index 0000000..75700b3 --- /dev/null +++ b/Examples/python/class/example.i @@ -0,0 +1,10 @@ +/* File : example.i */ +%module example + +%{ +#include "example.h" +%} + +/* Let's just grab the original header file here */ +%include "example.h" + |