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
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
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