/trunk/Examples/test-suite/conversion_namespace.i

# · Swig · 14 lines · 12 code · 2 blank · 0 comment · 0 complexity · daa7869129f54058455c7eea0bdd3e91 MD5 · raw file

  1. %module conversion_namespace
  2. %rename(toFoo) oss::Bar::operator Foo();
  3. %inline %{
  4. namespace oss
  5. {
  6. struct Foo {
  7. };
  8. struct Bar {
  9. operator Foo () { return Foo(); }
  10. };
  11. }
  12. %}