swig/Examples/test-suite/mod.h
Seth R Johnson feeb2516ae "Include what you use" for tests
Many of these tests implicitly required the target language library files to include the headers upstream.
2019-01-06 08:32:34 -05:00

34 lines
260 B
C++

#include <cstddef>
class C;
class A
{
public:
A() {}
C* GetC() { return NULL; }
void DoSomething(A* a) {}
};
class B : public A
{
public:
B() {}
};
class C : public B
{
public:
C() {}
};
class D : public C
{
public:
D() {}
};