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

40 lines
621 B
OpenEdge ABL

%module namespace_system_collision
%{
#include <string>
namespace TopLevel
{
namespace System
{
class Foo {
public:
virtual ~Foo() {}
virtual std::string ping() { return "TopLevel::System::Foo::ping()"; }
};
}
}
%}
%include <std_string.i>
// nspace feature only supported by these languages
#if defined(SWIGJAVA) || defined(SWIGCSHARP) || defined(SWIGD)
%nspace;
#else
//#warning nspace feature not yet supported in this target language
#endif
namespace TopLevel
{
namespace System
{
class Foo {
public:
virtual ~Foo();
virtual std::string ping();
};
}
}