PageRenderTime 34ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Swig | 12 lines | 10 code | 2 blank | 0 comment | 0 complexity | 8e2abefcb40e6ae1a869517f6ef78162 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module constructor_rename
  2. %{
  3. struct Foo {
  4. Foo() {}
  5. };
  6. %}
  7. struct Foo {
  8. %rename(RenamedConstructor) Foo();
  9. Foo() {}
  10. };