PageRenderTime 23ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Swig | 15 lines | 11 code | 4 blank | 0 comment | 0 complexity | 0574fb9a0f3ba820542369edbb1bd007 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module constructor_value
  2. %inline %{
  3. class Foo {
  4. public:
  5. Foo(int a) {};
  6. };
  7. class Bar {
  8. public:
  9. Bar(Foo ci) {}
  10. };
  11. %}