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

26 lines
516 B
OpenEdge ABL

%module template_default_inherit
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) A::nindex; /* Ruby, wrong constant name */
%inline %{
template <class C>
struct A
{
typedef unsigned int size_type;
static const size_type nindex = static_cast<size_type>(-1);
};
template <class C>
struct B : A<C>
{
typedef typename A<C>::size_type size_type;
void say_hi(size_type index = A<C>::nindex) {}
};
%}
%template(A_int) A<int>;
%template(B_int) B<int>;