swig/Examples/test-suite/rename_scope.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

68 lines
1.2 KiB
OpenEdge ABL

%module rename_scope
%inline
%{
namespace oss
{
enum Polarization { UnaryPolarization, BinaryPolarization };
template <Polarization P>
struct Interface_
{
};
}
%}
namespace oss
{
// Interface_
%template(Interface_UP) Interface_<UnaryPolarization>;
%template(Interface_BP) Interface_<BinaryPolarization>;
}
%inline
%{
namespace oss
{
namespace interfaces
{
template <Polarization P>
struct Natural : Interface_<P>
{
int test(void) { return 1; }
};
}
}
%}
namespace oss
{
namespace interfaces
{
%rename(rtest) Natural<UnaryPolarization>::test;
%rename(rtest) Natural<oss::BinaryPolarization>::test;
// Natural
%template(Natural_UP) Natural<UnaryPolarization>;
%template(Natural_BP) Natural<BinaryPolarization>;
}
}
%rename("equals") operator==;
%inline %{
namespace Utilities {
class Bucket
{
public:
Bucket() : m_left(0) {}
friend bool operator==(const Bucket& lhs, const Bucket& rhs){
return ( rhs.m_left == lhs.m_left );
}
private:
int m_left;
};
}
%}