summaryrefslogtreecommitdiff
path: root/Examples/test-suite/template_using.i
blob: cb98dda108ea715923e290f41ec322c825715b21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%module template_using

%inline 
{
  
namespace foo {
  template<typename T> class Foo { };
  template<typename T> T maxk(T a, T b) { return a > b ? a : b; }
}
using foo::maxk;
 
}

%template(maxint)   foo::maxk<int>;   
%template(Foofloat) foo::Foo<float>;
%template(maxfloat) maxk<float>;