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

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

#
Swig | 22 lines | 15 code | 7 blank | 0 comment | 0 complexity | d7446cdccd32085bced1c3e130c61280 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module mod_b
  2. %{
  3. #include "mod.h"
  4. %}
  5. %import mod_a.i
  6. class C : public B
  7. {
  8. public:
  9. C() {}
  10. };
  11. class D : public C
  12. {
  13. public:
  14. D() {}
  15. };