summaryrefslogtreecommitdiff
path: root/Examples/test-suite/smart_pointer_rename.i
blob: b137ffe71a2c0c816a89b121b35386dadf22a15c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
%module smart_pointer_rename

%rename(ftest1) Foo::test(int);
%rename(ftest2) Foo::test(int,int);

%inline %{

class Foo {
public:
    int   test(int) { return 1; }
    int   test(int,int) { return 2; }
};

class Bar {
    Foo *f;
public:
    Bar(Foo *_f) : f(_f) { }
    Foo *operator->() { return f; }
    int  test() { return 3; }
};

%}