diff options
| author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2009-08-18 20:56:02 +0000 |
|---|---|---|
| committer | Lorry <lorry@roadtrain.codethink.co.uk> | 2012-09-25 16:59:08 +0000 |
| commit | 9f8a09ed743cedd9547bf0661d518647966ab114 (patch) | |
| tree | 9c7803d3b27a8ec22e91792ac7f7932efa128b20 /Examples/test-suite/overload_extendc.i | |
| download | swig-tarball-master.tar.gz | |
Imported from /srv/lorry/lorry-area/swig-tarball/swig-1.3.40.tar.gz.HEADswig-1.3.40master
Diffstat (limited to 'Examples/test-suite/overload_extendc.i')
| -rw-r--r-- | Examples/test-suite/overload_extendc.i | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Examples/test-suite/overload_extendc.i b/Examples/test-suite/overload_extendc.i new file mode 100644 index 0000000..1c1dd00 --- /dev/null +++ b/Examples/test-suite/overload_extendc.i @@ -0,0 +1,21 @@ +%module overload_extendc + +%typemap(default) int int2 "$1=1000;"; + +%inline %{ +typedef struct Foo { + int dummy; +} Foo; +%} + +%extend Foo { + int test(int x) { x = 0; return 1; } + int test(char *s) { s = 0; return 2; } + int test(double x, double y) { x = 0; y = 0; return 3; } + int test(char *s, int int1, int int2) { s = 0; return int1+int2; } + + /* C default arguments */ + int test(Foo* f, int i=10, int j=20) { return i+j; } +}; + + |
