15 lines
203 B
OpenEdge ABL
15 lines
203 B
OpenEdge ABL
%module rename_rstrip_encoder
|
|
|
|
// strip the Cls suffix from all identifiers
|
|
%rename("%(rstrip:[Cls])s") "";
|
|
|
|
%inline %{
|
|
|
|
class SomeThingCls {
|
|
};
|
|
|
|
struct AnotherThingCls {
|
|
void DoClsXCls() {}
|
|
};
|
|
|
|
%}
|