string 1.97 KB
Newer Older
1
// Components for manipulating sequences of characters -*- C++ -*-
2

3
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4
// 2005, 2006, 2007, 2009, 2010, 2011
5
// Free Software Foundation, Inc.
6 7 8 9
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
10
// Free Software Foundation; either version 3, or (at your option)
11 12 13 14 15 16 17
// any later version.

// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

18 19 20
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
21

22 23 24 25
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
// <http://www.gnu.org/licenses/>.
26

27 28 29 30
/** @file include/string
 *  This is a Standard C++ Library header.
 */

31 32 33 34
//
// ISO C++ 14882: 21  Strings library
//

35 36
#ifndef _GLIBCXX_STRING
#define _GLIBCXX_STRING	1
37 38 39 40 41

#pragma GCC system_header

#include <bits/c++config.h>
#include <bits/stringfwd.h>
42 43
#include <bits/char_traits.h>  // NB: In turn includes stl_algobase.h
#include <bits/allocator.h>
44
#include <bits/cpp_type_traits.h>
45 46
#include <bits/localefwd.h>    // For operators >>, <<, and getline.
#include <bits/ostream_insert.h>
Johannes Singler committed
47 48
#include <bits/stl_iterator_base_types.h>
#include <bits/stl_iterator_base_funcs.h>
49
#include <bits/stl_iterator.h>
50
#include <bits/stl_function.h> // For less
Johannes Singler committed
51 52
#include <ext/numeric_traits.h> 
#include <bits/stl_algobase.h> 
Paolo Carlini committed
53
#include <bits/range_access.h>
54 55
#include <bits/basic_string.h>
#include <bits/basic_string.tcc> 
56

57
#endif /* _GLIBCXX_STRING */