persistence/persistent_bool.hpp

    1: #ifndef STLPLUS_PERSISTENT_BOOL
    2: #define STLPLUS_PERSISTENT_BOOL
    3: ////////////////////////////////////////////////////////////////////////////////
    4: 
    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
    9: 
   10: //   Persistence of bool
   11: 
   12: ////////////////////////////////////////////////////////////////////////////////
   13: 
   14: #include "persistence_fixes.hpp"
   15: #include "persistent_contexts.hpp"
   16: 
   17: ////////////////////////////////////////////////////////////////////////////////
   18: 
   19: namespace stlplus
   20: {
   21: 
   22:   void dump_bool(dump_context&, const bool& data) throw(persistent_dump_failed);
   23:   void restore_bool(restore_context&, bool& data) throw(persistent_restore_failed);
   24: 
   25: } // end namespace stlplus
   26: 
   27: #endif