Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/extend_template_ns.i
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

33 lines
448 B
OpenEdge ABL

%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>;
}