PageRenderTime 61ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/test-suite/typedef_mptr.i

#
Swig | 34 lines | 27 code | 7 blank | 0 comment | 0 complexity | 1b2e76685f0506f15d2bd0b906575335 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. // Tests typedef through member pointers
  2. %module typedef_mptr
  3. #ifdef SWIGPYTHON
  4. %inline %{
  5. class Foo {
  6. public:
  7. int add(int x, int y) {
  8. return x+y;
  9. }
  10. int sub(int x, int y) {
  11. return x-y;
  12. }
  13. int do_op(int x, int y, int (Foo::*op)(int, int)) {
  14. return (this->*op)(x,y);
  15. }
  16. };
  17. typedef Foo FooObj;
  18. typedef int Integer;
  19. Integer do_op(Foo *f, Integer x, Integer y, Integer (FooObj::*op)(Integer, Integer)) {
  20. return f->do_op(x,y,op);
  21. }
  22. %}
  23. #endif
  24. #ifdef SWIGPYTHON
  25. %constant int (Foo::*add)(int,int) = &Foo::add;
  26. %constant Integer (FooObj::*sub)(Integer,Integer) = &FooObj::sub;
  27. #endif