summaryrefslogtreecommitdiff
path: root/Examples/test-suite/overload_polymorphic.i
blob: ac004f94869d924d86bfd053c7e29d3086aeed2f (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
26
%module overload_polymorphic

%inline %{

class Base {
public:
	Base(){}
	virtual ~Base(){}
};

class Derived : public Base {
public:
	Derived(){}
	virtual ~Derived(){}
};



int test(Base* base){ return 0;}
int test(int hello){ return 1; }

class Unknown;
int test2(Unknown* unknown) { return 0; }
int test2(Base* base) { return 1; }

%}