Tagged Questions
6
votes
4answers
3k views
Does Boost.Serialization serialize differently on different platforms?
I use Boost.Serialization to serialize a std::map. The code looks like this
void Dictionary::serialize(std::string & buffer)
{
try {
std::stringstream ss;
...
2
votes
3answers
421 views
using boost::iostreams to read specifically crafted data, then based on that create object and append it to list
I have an interesting problem. Let's say that i have file with lines filled like this:
name1[xp,y,z321](a,b,c){text};//comment
#comment
name2(aaaa);
also I have (simplified) class:
class something ...