I started to use boost\'s serialization code to write data to a binary stream. I get the following warnings which could be disabled (D_SCL_SECURE_NO_WARNINGS) but I wonder if it is safe to do so? How
I am writing a library that will handle storing and serializing user-defined types. The user-defined types are required to be themselves serializable.
I\'m trying to use boost::serialization to replace one part of an existing project that implements its own methods for serialization but are not that good.
I am working on a distributed application which has two components. One is written in standard C++ (not managed C++ and running on a Linux platform) and the other one is written in C#. Both are commun
I\'m trying to follow this example http://www.boost.org/doc/libs/1_42_0/libs/serialization/doc/serialization.html#constructors but I ke开发者_JS百科ep getting errors.Following the example, I get an er
How do I serialize/deserialize a boost::program_options::variables_map?I can\'t fi开发者_JAVA技巧nd an already implemented serialize function, and I don\'t know what functions in variables_map I can u
I\'m serializing and sending a raw-pointer of an object to another application. When deserializing I\'m getting another raw-pointer. This means that Boost::Serialization is cons开发者_开发知识库truct
I use Boost.Serialization to serialize a std::map. The code looks like this void Dictionary::serialize(std::string & buffer)
The serialization example below is from the boost mailing list which is pretty much the same as what I would like to do. However, I have changed the archive so that it will serialize to XML. The compi
I need to write a linux c++ app which saves it settings in XML format (for easy hand editing) and also communicates with existing apps through XML messages over sockets and HTTP. Problem is that I hav