git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
151 B
OpenEdge ABL
10 lines
151 B
OpenEdge ABL
%module template_default
|
|
%inline %{
|
|
template <class T1, class T2 = T1>
|
|
class A
|
|
{
|
|
};
|
|
%}
|
|
|
|
%template(A_ii) A<int, int>;
|
|
%template(A_d) A<double>;
|