2 ////////////////////////////////////////////////////////////////////////////////
4 // Author: Andy Rushton
5 // Copyright: (c) Southampton University 1999-2004
6 // (c) Andy Rushton 2004-2009
7 // License: BSD License, see ../docs/license.html
9 ////////////////////////////////////////////////////////////////////////////////
10 #include "persistent_int.hpp"
15 ////////////////////////////////////////////////////////////////////////////////
17 template<typename T, typename D>
18 void dump_vector(dump_context& context, const std::vector<T>& data, D dump_fn)
19 throw(persistent_dump_failed)
21 dump_unsigned(context,data.size());
22 for (unsigned i = 0; i < data.size(); i++)
23 dump_fn(context,data[i]);
26 template<typename T, typename R>
27 void restore_vector(restore_context& context, std::vector<T>& data, R restore_fn)
28 throw(persistent_restore_failed)
31 restore_unsigned(context,size);
33 for (unsigned i = 0; i < size; i++)
34 restore_fn(context,data[i]);
37 ////////////////////////////////////////////////////////////////////////////////
39 } // end namespace stlplus