persistence/persistent_stl.hpp

    1: #ifndef STLPLUS_PERSISTENT_STL
    2: #define STLPLUS_PERSISTENT_STL
    3: ////////////////////////////////////////////////////////////////////////////////
    4: 
    5: //   Author:    Andy Rushton
    6: //   Copyright: (c) Andy Rushton, 2007
    7: //   License:   BSD License, see ../docs/license.html
    8: 
    9: //   Set of persistence routines for the STL classes
   10: 
   11: ////////////////////////////////////////////////////////////////////////////////
   12: 
   13: #include "persistent_string.hpp"
   14: #include "persistent_pair.hpp"
   15: #include "persistent_vector.hpp"
   16: #include "persistent_list.hpp"
   17: #include "persistent_deque.hpp"
   18: #include "persistent_set.hpp"
   19: #include "persistent_multiset.hpp"
   20: #include "persistent_map.hpp"
   21: #include "persistent_multimap.hpp"
   22: #include "persistent_complex.hpp"
   23: #include "persistent_bitset.hpp"
   24: 
   25: #endif