17 lines
204 B
OpenEdge ABL
17 lines
204 B
OpenEdge ABL
|
|
%module rename_strip_encoder
|
||
|
|
|
||
|
|
// strip the wx prefix from all identifiers
|
||
|
|
%rename("%(strip:[wx])s") "";
|
||
|
|
|
||
|
|
%inline %{
|
||
|
|
|
||
|
|
class wxSomeWidget {
|
||
|
|
};
|
||
|
|
|
||
|
|
struct wxAnotherWidget {
|
||
|
|
void wxDoSomething() {}
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
%}
|