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

/trunk/Examples/chicken/egg/mod2.i

#
Swig | 17 lines | 14 code | 3 blank | 0 comment | 0 complexity | 1945472a47a606ab1dd5cf56548f67c0 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module mod2
  2. %import "mod1.i"
  3. %{
  4. class Bar {
  5. public:
  6. int b;
  7. };
  8. %}
  9. %inline %{
  10. class Bar2 : public Bar {
  11. public:
  12. int c;
  13. };
  14. %}