
19 Sep
2005
19 Sep
'05
9:10 p.m.
troy d. straszheim wrote:
Serialization of tuple. This will come in handy when revamping serialization tests...
http://svn.resophonic.com/pub/boost/boost/serialization/tuple.hpp http://svn.resophonic.com/pub/boost/libs/serialization/test/ test_tuple.cpp
Be careful with non-portable code like the following: char fieldstring[3] = "T?"; fieldstring[1] = field_num + 48; // 48 is "0", and we are limited to 0-9 This will only work in ASCII-encodings, and not e.g. on IBM machines using EBCDIC encodings. Matthias