swig/Examples/test-suite/template_default_qualify.i
Olly Betts d3809285a4 Change class names in test code which clash with PHP reserved words
(Interface, Class, and Function - these are case insensitive reserved
words in PHP).

Fix lists of expected methods in rename_scope_runme.php to match those
which we expect with PHP5.  With this and the change above, this testcase
now passes.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11545 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2009-08-13 03:58:09 +00:00

56 lines
1,003 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>
{
};
}
}
%}