mirror of https://github.com/swig/swig
57 lines
1003 B
OpenEdge ABL
57 lines
1003 B
OpenEdge ABL
// Tests typename qualification and constant resolution in default
|
|
// template arguments. Another Marcelo special.. :-).
|
|
|
|
%module template_default_qualify
|
|
|
|
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) etraits; /* Ruby, wrong class name */
|
|
|
|
%inline %{
|
|
namespace oss
|
|
{
|
|
|
|
enum Polarization { UnaryPolarization, BinaryPolarization };
|
|
|
|
template <Polarization P>
|
|
struct Interface_
|
|
{
|
|
};
|
|
|
|
namespace modules
|
|
{
|
|
|
|
template <class traits, class base = Interface_<traits::pmode> >
|
|
// *** problem here ****
|
|
struct Module : base
|
|
{
|
|
};
|
|
}
|
|
}
|
|
struct etraits
|
|
{
|
|
static const oss::Polarization pmode = oss::UnaryPolarization;
|
|
};
|
|
|
|
%}
|
|
|
|
namespace oss
|
|
{
|
|
%template(Interface_UP) Interface_<UnaryPolarization>;
|
|
namespace modules
|
|
{
|
|
%template(Module_etraits) Module<etraits>;
|
|
}
|
|
}
|
|
|
|
%inline %{
|
|
namespace oss
|
|
{
|
|
namespace modules
|
|
{
|
|
struct HModule1 : Module<etraits>
|
|
{
|
|
};
|
|
}
|
|
}
|
|
%}
|
|
|