#ifndef STLPLUS_PERSISTENT_MAP #define STLPLUS_PERSISTENT_MAP //////////////////////////////////////////////////////////////////////////////// // Author: Andy Rushton // Copyright: (c) Southampton University 1999-2004 // (c) Andy Rushton 2004-2009 // License: BSD License, see ../docs/license.html // Persistence for STL map //////////////////////////////////////////////////////////////////////////////// #include "persistence_fixes.hpp" #include "persistent_contexts.hpp" #include //////////////////////////////////////////////////////////////////////////////// namespace stlplus { template void dump_map(dump_context&, const std::map& data, DK key_dump_fn, DT val_dump_fn) throw(persistent_dump_failed); template void restore_map(restore_context&, std::map& data, RK key_restore_fn, RT val_restore_fn) throw(persistent_restore_failed); } // end namespace stlplus //////////////////////////////////////////////////////////////////////////////// #include "persistent_map.tpp" #endif