/tags/rel-1-3-25/SWIG/Examples/test-suite/errors/cpp_overload.i
Swig | 15 lines | 13 code | 2 blank | 0 comment | 0 complexity | c97bffbc613774219401e9ff1c540d56 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1%module xxx 2int foo(int x); 3int foo(double x); 4 5class Foo { 6public: 7 int bar(int); 8 int bar(double); 9}; 10 11class Spam { 12public: 13 Spam(); 14 Spam(int); 15};