PageRenderTime 117ms CodeModel.GetById 3ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Swig | 14 lines | 12 code | 2 blank | 0 comment | 0 complexity | daa7869129f54058455c7eea0bdd3e91 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  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. %}