Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/rename_strip_encoder.i
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

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() {}
};
%}