import source from 1.3.40
[external/swig.git] / Examples / test-suite / errors / cpp_overload.i
1 %module xxx
2 int foo(int x);
3 int foo(double x);
4
5 class Foo {
6 public:
7     int bar(int);
8     int bar(double);
9 };
10
11 class Spam {
12 public:
13     Spam();
14     Spam(int);
15 };