strings/string_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_STRING_STL
#define STLPLUS_STRING_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 "string_bitset.hpp"
#include "string_list.hpp"
#include "string_map.hpp"
#include "string_pair.hpp"
#include "string_sequence.hpp"
#include "string_set.hpp"
#include "string_string.hpp"
#include "string_vector.hpp"
#ifdef STLPLUS_HAS_CXX11
#include "string_shared_ptr.hpp"
#endif
 
#endif