dwww Home | Show directory contents | Find package

%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();
    };
  }
}

Generated by dwww version 1.15 on Tue Jul 2 00:39:07 CEST 2024.