swig/SWIG/Examples/test-suite/overload_complicated.i
Dave Beazley 516036631c The great merge
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2002-11-30 22:01:28 +00:00

21 lines
335 B
OpenEdge ABL

// 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