Overload resolution now works in PHP out of the box.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9305 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2006-09-20 06:59:07 +00:00
commit 5baafd12c0
6 changed files with 28 additions and 20 deletions

View file

@ -42,6 +42,10 @@ char *overloaded(double d) {
return "Overloaded with double";
}
char *overloaded(const char * str) {
return "Overloaded with char *";
}
char *overloaded( const Circle& ) {
return "Overloaded with Circle";
}