summaryrefslogtreecommitdiff
path: root/Examples/test-suite/extend_template_ns.i
blob: e4ab3ce420671050e2002eddac8b9c26bd784470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
%module extend_template_ns
%inline %{ 
namespace oss 
{ 
  enum Test {One, Two}; 
} 
%} 
 
namespace oss { 
   %extend Foo<One> {           //************ this doesn't work
     int test1(int x) { return x; } 
   };
} 
 
%extend oss::Foo<oss::One> {  //******** this works 
int test2(int x) { return x; } 
}; 
 
%inline %{ 
namespace oss 
{ 
  template <Test> 
  struct Foo { 
  }; 
 } 
%} 
 
namespace oss 
{ 
%template(Foo_One) Foo<One>; 
}