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