std_string.h revision 303975
167754Smsmith// Components for manipulating sequences of characters -*- C++ -*-
267754Smsmith
377424Smsmith// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
467754Smsmith// 2006, 2007
567754Smsmith// Free Software Foundation, Inc.
667754Smsmith//
7217365Sjkim// This file is part of the GNU ISO C++ Library.  This library is free
8245582Sjkim// software; you can redistribute it and/or modify it under the
970243Smsmith// terms of the GNU General Public License as published by the
1067754Smsmith// Free Software Foundation; either version 2, or (at your option)
11217365Sjkim// any later version.
12217365Sjkim
13217365Sjkim// This library is distributed in the hope that it will be useful,
14217365Sjkim// but WITHOUT ANY WARRANTY; without even the implied warranty of
15217365Sjkim// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16217365Sjkim// GNU General Public License for more details.
17217365Sjkim
18217365Sjkim// You should have received a copy of the GNU General Public License along
19217365Sjkim// with this library; see the file COPYING.  If not, write to the Free
20217365Sjkim// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21217365Sjkim// USA.
22217365Sjkim
23217365Sjkim// As a special exception, you may use this file as part of a free software
24217365Sjkim// library without restriction.  Specifically, if other files instantiate
2567754Smsmith// templates or use macros or inline functions from this file, or you compile
26217365Sjkim// this file and link it with other files to produce an executable, this
27217365Sjkim// file does not by itself cause the resulting executable to be covered by
28217365Sjkim// the GNU General Public License.  This exception does not however
2967754Smsmith// invalidate any other reasons why the executable file might be covered by
30217365Sjkim// the GNU General Public License.
31217365Sjkim
32217365Sjkim/** @file include/string
33217365Sjkim *  This is a Standard C++ Library header.
34217365Sjkim */
35217365Sjkim
36217365Sjkim//
37217365Sjkim// ISO C++ 14882: 21  Strings library
38217365Sjkim//
39217365Sjkim
40217365Sjkim#ifndef _GLIBCXX_STRING
41217365Sjkim#define _GLIBCXX_STRING	1
42217365Sjkim
4367754Smsmith#pragma GCC system_header
4477424Smsmith
4567754Smsmith#include <bits/c++config.h>
46193341Sjkim#include <bits/stringfwd.h>
47193341Sjkim#include <bits/char_traits.h>
48193341Sjkim#include <memory> 	// For allocator.
4967754Smsmith#include <bits/cpp_type_traits.h>
5067754Smsmith#include <iosfwd> 	// For operators >>, <<, and getline decls.
5177424Smsmith#include <bits/ostream_insert.h>
5291116Smsmith#include <bits/stl_iterator.h>
5367754Smsmith#include <bits/stl_function.h>  // For less
5467754Smsmith#include <bits/basic_string.h>
5577424Smsmith
5667754Smsmith#ifndef _GLIBCXX_EXPORT_TEMPLATE
57114237Snjl# include <algorithm> // for find_if
5867754Smsmith# include <bits/basic_string.tcc>
59114237Snjl#endif
60114237Snjl
61114237Snjl#endif /* _GLIBCXX_STRING */
62114237Snjl