PageRenderTime 25ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/test-suite/casts.i

#
Swig | 21 lines | 15 code | 6 blank | 0 comment | 0 complexity | 5a66c0fe279fe92b5c213c74746d19fd MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module casts
  2. %inline %{
  3. class A {
  4. public:
  5. A() {}
  6. void hello()
  7. {
  8. }
  9. };
  10. class B : public A
  11. {
  12. public:
  13. B() {}
  14. };
  15. %}