PageRenderTime 54ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/Root-branch-php-utl/SWIG/Examples/python/weave/example.h

#
C++ Header | 18 lines | 15 code | 3 blank | 0 comment | 0 complexity | 7de9ed7f8d9eed44a5990d1f67d630c2 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. #ifndef _EXAMPLE_H
  2. #define _EXAMPLE_H
  3. class Foo {
  4. public:
  5. int x;
  6. };
  7. class Bar {
  8. public:
  9. int y;
  10. };
  11. class FooBar : public Foo, public Bar {
  12. public:
  13. int z;
  14. };
  15. #endif