git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6352 626c5289-ae23-0410-ae9c-e8d60b6d4f22
41 lines
291 B
OpenEdge ABL
41 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()
|
|
{
|
|
}
|
|
};
|
|
}
|