I have a document structure implemented with boost serialization, however when I save/load a document it can take a long time. I would need to have a progress indication of how far the save/load has g
I have a C++ library that uses Boost.Serialization. I\'m creating Python bindings for this library using Boost.Python. It\'s fairly clear how to make a pickle suite for Boost.Python that uses开发者_如
I have been trying to make this work for a long time now. In my project there are 6 classes that are being serialized using the exact tutorial from boost, by implementing the template function serial
so I\'m using the boost::serialization library, and I\'m trying to overide how a class is constructed, since it has no default constructor. This 开发者_如何学JAVAis demonstrated here. To me it appears
I am trying to serialize a Boost scoped_array using Boost serialization but the compiler (VS2008) is giving me the following error messa开发者_Go百科ge:
On a project I work on, I have to send arrays of float / double开发者_C百科 back and forth over a network, I\'m using Boost.Asio for the network stuff, as I need the communication to be async, and tha
I serialize multiple objects into a binary archive with Boost. When reading back those objects from a binary_iarchive, is there a way to know how many objects are in the archi开发者_如何学编程ve or si
I have a class with a map, and I want to serialize the class using boost serialize. std::map<int, Compli开发者_JS百科catedThing> stuff;
I\'m making a game message system and using boost::serialize to convert message data into streams and sending it. This works fine for transmitting messages instantly as I can send off the reference to
I\'m porting an existing MFC C++ application to use Boost::Serialization for XML files. My CDocument object contains all the data for the app. I\'ve implemented the serialize function as: