PageRenderTime 42ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-26/SWIG/Examples/test-suite/errors/cpp_nested.i

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