git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-c@13567 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
No EOL
188 B
OpenEdge ABL
13 lines
No EOL
188 B
OpenEdge ABL
%module cpp_basic_template_function
|
|
|
|
%inline
|
|
{
|
|
template <class T>
|
|
T GetMax (T a, T b) {
|
|
T result;
|
|
result = (a>b)? a : b;
|
|
return (result);
|
|
}
|
|
}
|
|
|
|
%template(GetMaxInt) GetMax<int>; |