lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]



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