Deserializer has a template member which takes
std::vector<...>'s of (hopefully) Serializable
subclasses, because you were too dense to figure
out how to make it take some generic iterator
which you could just append to (or push_back() or
whatever). Figure out what your problem was, and
fix it.
Logged In: YES
user_id=30194
(the point here, in case it's not clear, is to make it
work with any collection which elements can be added to.
Will it work to say "the argument must be an output
iterator," and just *it++ = ... ?)