197403Sobrien// Components for manipulating sequences of characters -*- C++ -*-
297403Sobrien
3169691Skan// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4169691Skan// 2006, 2007
597403Sobrien// Free Software Foundation, Inc.
697403Sobrien//
797403Sobrien// This file is part of the GNU ISO C++ Library.  This library is free
897403Sobrien// software; you can redistribute it and/or modify it under the
997403Sobrien// terms of the GNU General Public License as published by the
1097403Sobrien// Free Software Foundation; either version 2, or (at your option)
1197403Sobrien// any later version.
1297403Sobrien
1397403Sobrien// This library is distributed in the hope that it will be useful,
1497403Sobrien// but WITHOUT ANY WARRANTY; without even the implied warranty of
1597403Sobrien// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1697403Sobrien// GNU General Public License for more details.
1797403Sobrien
1897403Sobrien// You should have received a copy of the GNU General Public License along
1997403Sobrien// with this library; see the file COPYING.  If not, write to the Free
20169691Skan// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
2197403Sobrien// USA.
2297403Sobrien
2397403Sobrien// As a special exception, you may use this file as part of a free software
2497403Sobrien// library without restriction.  Specifically, if other files instantiate
2597403Sobrien// templates or use macros or inline functions from this file, or you compile
2697403Sobrien// this file and link it with other files to produce an executable, this
2797403Sobrien// file does not by itself cause the resulting executable to be covered by
2897403Sobrien// the GNU General Public License.  This exception does not however
2997403Sobrien// invalidate any other reasons why the executable file might be covered by
3097403Sobrien// the GNU General Public License.
3197403Sobrien
32169691Skan/** @file include/string
33169691Skan *  This is a Standard C++ Library header.
34169691Skan */
35169691Skan
3697403Sobrien//
3797403Sobrien// ISO C++ 14882: 21  Strings library
3897403Sobrien//
3997403Sobrien
40132720Skan#ifndef _GLIBCXX_STRING
41132720Skan#define _GLIBCXX_STRING	1
4297403Sobrien
4397403Sobrien#pragma GCC system_header
4497403Sobrien
4597403Sobrien#include <bits/c++config.h>
4697403Sobrien#include <bits/stringfwd.h>
4797403Sobrien#include <bits/char_traits.h>
4897403Sobrien#include <memory> 	// For allocator.
49169691Skan#include <bits/cpp_type_traits.h>
5097403Sobrien#include <iosfwd> 	// For operators >>, <<, and getline decls.
51169691Skan#include <bits/ostream_insert.h>
5297403Sobrien#include <bits/stl_iterator.h>
5397403Sobrien#include <bits/stl_function.h>  // For less
5497403Sobrien#include <bits/basic_string.h>
5597403Sobrien
56132720Skan#ifndef _GLIBCXX_EXPORT_TEMPLATE
5797403Sobrien# include <algorithm> // for find_if
5897403Sobrien# include <bits/basic_string.tcc>
5997403Sobrien#endif
6097403Sobrien
61132720Skan#endif /* _GLIBCXX_STRING */
62