strings/print_stl.hpp
#ifndef STLPLUS_PRINT_STL
#define STLPLUS_PRINT_STL
////////////////////////////////////////////////////////////////////////////////
// Author: Andy Rushton
// Copyright: (c) Southampton University 1999-2004
// (c) Andy Rushton 2004 onwards
// License: BSD License, see ../docs/license.html
// Template string conversions for pointers and STL containers
////////////////////////////////////////////////////////////////////////////////
#include "strings_fixes.hpp"
#include "print_bitset.hpp"
#include "print_list.hpp"
#include "print_map.hpp"
#include "print_pair.hpp"
#include "print_sequence.hpp"
#include "print_set.hpp"
#include "print_string.hpp"
#include "print_vector.hpp"
#ifdef STLPLUS_HAS_CXX11
#include "print_shared_ptr.hpp"
#endif
#endif