swig/Examples/test-suite/using_namespace.i
William S Fulton d6b81eb831 Revert rev 11187 "Merged with recent changes from trunk."
This reverts commit c595e4d90ebfd63eb55430c735bb121cf690bd59.

Conflicts:

	Source/Modules/c.cxx

From: William S Fulton <wsf@fultondesigns.co.uk>

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@13033 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2012-05-06 01:13:16 +00:00

88 lines
1.4 KiB
OpenEdge ABL

%module(ruby_minherit="1") using_namespace
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) hi::hi0; /* Ruby, wrong class name */
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) hi::hi1; /* Ruby, wrong class name */
%warnfilter(SWIGWARN_JAVA_MULTIPLE_INHERITANCE,
SWIGWARN_CSHARP_MULTIPLE_INHERITANCE,
SWIGWARN_D_MULTIPLE_INHERITANCE,
SWIGWARN_PHP_MULTIPLE_INHERITANCE) Hi<hello::Hello, hi::hi0>; // C#, D, Java, PHP multiple inheritance
%inline %{
namespace hello
{
struct Hello
{
};
template <class _T1, class _T2>
struct Hi : _T1, _T2
{
int value1() const
{
return 1;
}
int value2() const
{
return 2;
}
};
}
namespace hi
{
struct hi0
{
};
}
%}
namespace hello
{
%template(Hi_hi0) Hi<hello::Hello, hi::hi0>;
}
%inline %{
namespace hi
{
struct hi1 : private hello::Hi< hello::Hello, hi0 >
{
using hello::Hi< hello::Hello, hi::hi0 >::value1;
using hello::Hi< hello::Hello, hi0 >::value2;
};
}
%}
%inline {
namespace foo {
typedef double mytype;
}
// global namespace
typedef float mytype;
using namespace foo;
struct X {
::mytype d;
};
}
%inline %{
namespace SpaceMan {
typedef double SpaceManDouble;
}
using namespace ::SpaceMan; // global namespace prefix
SpaceManDouble useSpaceMan(SpaceManDouble s) { return s; }
%}