git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6768 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
178 B
C++
18 lines
178 B
C++
#ifndef _EXAMPLE_H
|
|
#define _EXAMPLE_H
|
|
|
|
class Foo {
|
|
public:
|
|
int x;
|
|
};
|
|
|
|
class Bar {
|
|
public:
|
|
int y;
|
|
};
|
|
|
|
class FooBar : public Foo, public Bar {
|
|
public:
|
|
int z;
|
|
};
|
|
#endif
|