5 #include "serialization.h"
9 std::ostringstream genes
, notes
;
11 obj
.writeNotes(notes
);
12 std::string genestr
= genes
.str();
13 std::string notestr
= notes
.str();
14 ar
& genestr
& notestr
;
18 std::string genes
, notes
;
20 std::istringstream
genestream(genes
), notestream(notes
);
21 genestream
>> std::noskipws
>> obj
;
22 // obj.readNotes(notestream);