Re: [C++-sig] Boost python simple interfacing

2013-09-24 Thread Raghvendra Jain
Well, I have embedded an interpreter inside C++ code, if your question is related to that, please write back. May be I can help you with that. cheers, Raghav On Tue, Sep 24, 2013 at 4:33 PM, Giuseppe Corbelli < giuseppe.corbe...@copanitalia.com> wrote: > On 21/09/2013 16:52, Kassiopi Kassiopi2

Re: [C++-sig] Boost python simple interfacing

2013-09-24 Thread Dave Wampler
What you're trying to do is fine. You only need to expose the interface that python is accessing. You do need to link in the library that contains the symbols for the commandManager class however. On Sep 22, 2013, at 7:48 PM, Kassiopi Kassiopi2 wrote: Hi, I want to call a c++ function from an

Re: [C++-sig] Boost python simple interfacing

2013-09-24 Thread Giuseppe Corbelli
On 21/09/2013 16:52, Kassiopi Kassiopi2 wrote: Hi, I want to call a c++ function from an embedded python shell, using boost python. All the examples I've seen online describe how to expose a whole class or some functions, but all cases refer to *standalone* parts of code. My case is different th

[C++-sig] Use alternative launcher for bpl-test rule

2013-09-24 Thread John Reid
Hi, I'm having some problems asking boost.build to start the debugger or valgrind when it runs some of my python extension bpl-test rules. I saw in the boost.build code some comments that suggests it hijacks the testing.launcher feature which I thought would be the way to do this. Does anyone know