[C++-sig] exposing pointer to Python

Renato Araujo renatox at gmail.com
Tue Jul 7 04:00:18 CEST 2009


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<alexey.akimov85 at gmail.com> 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
> 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 access to
> variable using [] operator?
> like:
>
>>>> import module
>>>> module.X[i] = i
>
> I've found several examples on this topic:
> http://mail.python.org/pipermail/cplusplus-sig/2005-January/008189.html
> http://osdir.com/ml/python.c++/2003-01/msg00042.html
>
> but still can not make this trick.
>
>
>
>
>
>
> _______________________________________________
> Cplusplus-sig mailing list
> Cplusplus-sig at python.org
> http://mail.python.org/mailman/listinfo/cplusplus-sig
>



-- 
Renato Araujo Oliveira Filho


More information about the Cplusplus-sig mailing list