Tagged Questions
0
votes
1answer
62 views
boost serialization run-time error with strings in windows
We are testing a very simple serialization code with boost::serialization. The test simply writes a std::string in a file.
It compiles ok but the problem is that it throws an exception when << ...
12
votes
2answers
240 views
Deriving custom archive classes from boost::archive::text_oarchive_impl and boost::archive::text_iarchive_impl
Note:
Boost's archive scheme is based on symmetrical input and output archive classes. It's tedious to write about both of them all the time, so I'll use ?archive to mean both oarchive and iarchive.
...
0
votes
1answer
1k views
What causes C4250 (class inherits member via dominace) when using boost serialization with a virtual base class?
The meaning of the VC++ compiler warning C4250 'class1' : inherits 'class2::member' via dominance is clear to me. (But see here for an explanation.)
I have currently the problem that I get this ...