/trunk/Examples/test-suite/errors/cpp_overload.i
# · Swig · 15 lines · 13 code · 2 blank · 0 comment · 0 complexity · c97bffbc613774219401e9ff1c540d56 MD5 · raw file
- %module xxx
- int foo(int x);
- int foo(double x);
- class Foo {
- public:
- int bar(int);
- int bar(double);
- };
- class Spam {
- public:
- Spam();
- Spam(int);
- };