/tags/rel-1-3-15/SWIG/Examples/test-suite/conversion.i
Swig | 11 lines | 9 code | 2 blank | 0 comment | 0 complexity | 8101a60cd27784c02ffe660588265e05 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1%module conversion
2%rename(toFoo) Bar::operator Foo();
3
4%inline %{
5 struct Foo {
6 };
7 struct Bar {
8 operator Foo () { return Foo(); }
9 };
10%}
11