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