summaryrefslogtreecommitdiff
path: root/Examples/test-suite/rename_strip_encoder.i
blob: 691173b02bf927a97f33e898abe406746400f69f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%module rename_strip_encoder

// strip the wx prefix from all identifiers
%rename("%(strip:[wx])s") ""; 

%inline %{

class wxSomeWidget {
};

struct wxAnotherWidget {
    void wxDoSomething() {}
};


%}