PageRenderTime 23ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/overload_extendc.i

#
Swig | 21 lines | 14 code | 6 blank | 1 comment | 0 complexity | 4435182a999c5dea0f30e3f2c39ba8a6 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module overload_extendc
  2. %typemap(default) int int2 "$1=1000;";
  3. %inline %{
  4. typedef struct Foo {
  5. int dummy;
  6. } Foo;
  7. %}
  8. %extend Foo {
  9. int test(int x) { x = 0; return 1; }
  10. int test(char *s) { s = 0; return 2; }
  11. int test(double x, double y) { x = 0; y = 0; return 3; }
  12. int test(char *s, int int1, int int2) { s = 0; return int1+int2; }
  13. /* C default arguments */
  14. int test(Foo* f, int i=10, int j=20) { return i+j; }
  15. };