PageRenderTime 23ms CodeModel.GetById 17ms app.highlight 4ms RepoModel.GetById 1ms 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
 4class Foo {
 5 public:
 6   int x;
 7};
 8
 9class Bar {
10 public:
11   int y;
12};
13
14class FooBar : public Foo, public Bar {
15 public:
16   int z;
17};
18#endif