On 17 June 2012 22:16, vikas chauhan wrote:
>
>
> On 17 June 2012 15:45, wrote:
>
>> Send Cplusplus-sig mailing list submissions to
>>cplusplus-sig@python.org
>>
>> To subscribe or unsubscribe via the World Wide Web, visit
>>http://mail
sig digest..."
>
>
> Today's Topics:
>
> 1. wrapping generic getter/setter functions in boost.python
> (vikas chauhan)
> 2. Re: wrapping generic getter/setter functions in boost.python
> (Jonas Wielicki)
>
>
>
Hi all,
I am pretty new to boost.python and I have been getting some problems
wrapping generic getter/setter functions.
Say for eg. we have class like this.
class X{
int a[10];
public:
int geta(int index) throw(some_exception) {
if(index >= 10 || index <0)
throw som