persistence/persistent_stl.hpp

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