git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7143 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
147 B
OpenEdge ABL
17 lines
147 B
OpenEdge ABL
%module mod2
|
|
|
|
%import "mod1.i"
|
|
|
|
%{
|
|
class Bar {
|
|
public:
|
|
int b;
|
|
};
|
|
%}
|
|
|
|
%inline %{
|
|
class Bar2 : public Bar {
|
|
public:
|
|
int c;
|
|
};
|
|
%}
|