strings/print_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
#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