persistence/persistent_stl.hpp
#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