PageRenderTime 40ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-29/SWIG/Examples/test-suite/conversion_namespace.i

#
Swig | 14 lines | 12 code | 2 blank | 0 comment | 0 complexity | 78c23487896ab382f5b5e19512d4360c 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 oss::Foo();
  3. %inline %{
  4. namespace oss
  5. {
  6. struct Foo {
  7. };
  8. struct Bar {
  9. operator Foo () { return Foo(); }
  10. };
  11. }
  12. %}