[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: srtti project
- From: Vincent Penne <ziggy@...>
- Date: Sat, 07 Aug 2004 09:08:32 +0200
I've just released a new version (0.9.1) which fixes a bug in the lua 5
binding.
I would like to add another feature that has this binding generator : it
supports binding of overloaded functions, say you have two functions
with same name but different type of argument
int foo(char * string);
int foo(int number = 0);
The binding will correctly check the type of given argument. It works
also if the number of argument varies, and support also optionnal arguments.
Vincent Penne