git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6812 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
126 B
OpenEdge ABL
12 lines
126 B
OpenEdge ABL
%module template_default_pointer
|
|
|
|
%inline %{
|
|
|
|
template <class T1, class T2 = T1*>
|
|
class B
|
|
{
|
|
};
|
|
|
|
%}
|
|
|
|
%template(B_d) B<double>;
|