[C++-sig] Combining Boost Serialization with Boost Python

2012-03-14 Thread James Amundson
I have a use case involving Boost Serialization and Boost Python. I have a (mostly) C++ library wrapped with Python. The C++ code uses Boost Serialization to periodically create checkpoints from which the user can resume later. Getting the serialization and python libraries to work together did

Re: [C++-sig] multiple modules per dll/so?

2012-03-14 Thread Stefan Seefeld
On 2012-03-14 12:45, Michael Schuitema wrote: > I would like to create a python package with several submodules, eg > > parent > parent.child1 > parent.child2 > > A number of the submodules use C++ extension made available via > boost.python. Do I need to create a separate dll for each of them or

[C++-sig] multiple modules per dll/so?

2012-03-14 Thread Michael Schuitema
I would like to create a python package with several submodules, eg parent parent.child1 parent.child2 A number of the submodules use C++ extension made available via boost.python. Do I need to create a separate dll for each of them or is there a way to expose several packages with one dll? Can