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