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

/trunk/Examples/test-suite/errors/cpp_private_inherit.i

#
Swig | 11 lines | 7 code | 4 blank | 0 comment | 0 complexity | f8213371f930420306c5973b0db61aca MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module xxx
  2. class Foo {
  3. };
  4. class Bar : private Foo {
  5. };
  6. class Spam : protected Foo {
  7. };