We have a lot of C++ code using a home-grown Event class template. An
Event is just a list of pointers to callback function objects. More
precisely, an Event is a std::list*>, where
unary_function is a polymorphic function object class. Code that
generates an event iterates through the list, de
Why not just subclass A as A_wrapper, add the necessary ctor to
A_wrapper and expose that instead?
-Original Message-
From:
cplusplus-sig-bounces+matthew.scouten=tradingtechnologies@python.org
[mailto:cplusplus-sig-bounces+matthew.scouten=tradingtechnologies@py
thon.org] On Behalf
Allo Nat,
Thank you very much for your reply. I didn't realized I could have this
flexibility with py++ generated code.
Now I could interface these functions.
Cheers!
Benda
Nat Goodspeed writes:
> You want to write a C++ wrapper function something like this:
>
> std::string wrapped_read(size_
On Tue, Jun 22, 2010 at 6:37 AM, wrote:
> Allo Nat,
>
> Thank you very much for your reply. I didn't realized I could have this
> flexibility with py++ generated code.
Yes it
has(http://language-binding.net/pyplusplus/documentation/functions/transformation/transformation.html),
but your use cas