1 #ifndef STLPLUS_PERSISTENT_BITSET
2 #define STLPLUS_PERSISTENT_BITSET
3 ////////////////////////////////////////////////////////////////////////////////
5 // Author: Andy Rushton
6 // Copyright: (c) Southampton University 1999-2004
7 // (c) Andy Rushton 2004-2009
8 // License: BSD License, see ../docs/license.html
10 // Persistence of STL bitset
12 ////////////////////////////////////////////////////////////////////////////////
14 #include "persistence_fixes.hpp"
15 #include "persistent_contexts.hpp"
18 ////////////////////////////////////////////////////////////////////////////////
24 void dump_bitset(dump_context
&, const std::bitset
<N
>& data
) throw(persistent_dump_failed
);
27 void restore_bitset(restore_context
&, std::bitset
<N
>& data
) throw(persistent_restore_failed
);
29 } // end namespace stlplus
31 ////////////////////////////////////////////////////////////////////////////////
32 #include "persistent_bitset.tpp"