aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/overload_complicated.i
blob: 2050e1945f4d382f401d6fd412a1a3d2c626feea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// A complicated test of overloaded functions
%module overload_complicated

#ifndef SWIG_NO_OVERLOAD

%typemap(in, numinputs=0) int l { $1 = 4711; }

%inline %{

double foo(int, int, char *, int) {
   return 15;
}

double foo(int i, int j, double k = 17.4, int l = 18, char m = 'P') {
   return i + j + k + l + (int) m;
}

%}

#endif