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

[C++-sig] pyplusplus generate for strict with char* member

2013-09-15 Thread Dave Wampler
When I try to expose a struct with a char* member, I get a warning that pointer members aren't supported currently. Considering char* is so common in existing APIs, is there a current workaround or example (like conversion to std::string)? Thanks, Dave __