swig/Examples/test-suite/destructor_reprotected.i

42 lines
291 B
OpenEdge ABL

%module destructor_reprotected
%inline {
struct A
{
A()
{
}
virtual ~A()
{
}
};
struct B : A
{
protected:
B()
{
}
~B()
{
}
};
struct C : B
{
C()
{
}
~C()
{
}
};
}