Re: [C++-sig] exposing pointer to Python

2009-07-07 Thread Roman Yakovenko
On Tue, Jul 7, 2009 at 5:16 PM, Alexey Akimov wrote: > Thank you, Renato > > However this is still not clear how to wrap a pointer to double using that > indexing_suites. For types like vector it is pretty much clear, but > what do i need to do in order to wrap just a simple poiner to double? The

Re: [C++-sig] exposing pointer to Python

2009-07-07 Thread Alexey Akimov
Thank you, Renato However this is still not clear how to wrap a pointer to double using that indexing_suites. For types like vector it is pretty much clear, but what do i need to do in order to wrap just a simple poiner to double? Also i have related question - how can i wrap an overloaded indexi

Re: [C++-sig] exposing pointer to Python

2009-07-06 Thread Renato Araujo
take a look at: http://www.boost.org/doc/libs/1_39_0/libs/python/doc/v2/indexing.html BR On Mon, Jul 6, 2009 at 8:07 PM, Alexey Akimov wrote: > I have some class X that contains a variable which is a pointer to some > other class OtherClass (for simplicity we may imagine it can be some > standar

[C++-sig] exposing pointer to Python

2009-07-06 Thread Alexey Akimov
I have some class X that contains a variable which is a pointer to some other class OtherClass (for simplicity we may imagine it can be some standard c++ type - int, double, etc.): class X{ public: OtherClass* variable; }; my question is: how can I expose it to python such that user may ac