¡@

Home 

c++ Programming Glossary: boost.serialization

Test whether a class is polymorphic

http://stackoverflow.com/questions/1107948/test-whether-a-class-is-polymorphic

. As for why it might be necessary one case I know is the Boost.Serialization library. If you are saving non polymorphic type then you can..

C++ iterate into nested struct field with boost fusion adapt_struct

http://stackoverflow.com/questions/12084781/c-iterate-into-nested-struct-field-with-boost-fusion-adapt-struct

It uses a 'more Boost' solution since I saw it in the Boost.Serialization library. See also below and live on Coliru . The solution uses..

List of header only boost libraries

http://stackoverflow.com/questions/13604090/list-of-header-only-boost-libraries

Boost.MPI Boost.ProgramOptions Boost.Python Boost.Regex Boost.Serialization Boost.Signals Boost.System Boost.Thread Boost.Wave A few libraries..

Simpler way to create a C++ memorystream from (char*, size_t), without copying the data?

http://stackoverflow.com/questions/2079912/simpler-way-to-create-a-c-memorystream-from-char-size-t-without-copying-t

Boost.Iostreams with boost archive binary_iarchive from Boost.Serialization to be able to use convenient extraction operators to read chunks.. endl return 0 With GCC 4.4.1 on AMD64 it outputs 1234 5678 Boost.Serialization is very powerful and knows how to serialize all basic types.. See the documentation. Hidden somewhere in the Boost.Serialization sources is an example of a portable binary archive that knows..

Does Boost.Serialization serialize differently on different platforms?

http://stackoverflow.com/questions/3708842/does-boost-serialization-serialize-differently-on-different-platforms

Boost.Serialization serialize differently on different platforms I use Boost.Serialization.. serialize differently on different platforms I use Boost.Serialization to serialize a std map. The code looks like this void Dictionary..

Binary serialization/de-serialization in C++ and C#

http://stackoverflow.com/questions/4677669/binary-serialization-de-serialization-in-c-and-c-sharp

and not in XML due to performance reasons . I have used Boost.Serialization to do this when both ends were implemented in C but now that.. in C but now that I have a .NET application on one end Boost.Serialization is not a viable solution. I am looking for a solution that allows..

Using Boost on ubuntu

http://stackoverflow.com/questions/846566/using-boost-on-ubuntu

before building and installing it Boost.Regex Boost.Serialization Boost.Signals Boost.Thread Boost.Wave A few libraries have optional..

How to save c++ object into a xml file and restore back?

http://stackoverflow.com/questions/974815/how-to-save-c-object-into-a-xml-file-and-restore-back

back c xml serialization share improve this question Boost.Serialization and libs11n can both do this. The libs11n manual available here..