New std::string implementation.
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / headers / sstream / synopsis.cc
blobf1e1af2df9542221aafc99ef6c7d01f418240e4d
1 // { dg-do compile }
3 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 #include <sstream>
22 namespace std {
23 _GLIBCXX_BEGIN_NAMESPACE_CXX11
24 template <class charT, class traits, class Allocator>
25 class basic_stringbuf;
26 typedef basic_stringbuf<char> stringbuf;
27 typedef basic_stringbuf<wchar_t> wstringbuf;
29 template <class charT, class traits, class Allocator>
30 class basic_istringstream;
31 typedef basic_istringstream<char> istringstream;
32 typedef basic_istringstream<wchar_t> wistringstream;
34 template <class charT, class traits, class Allocator>
35 class basic_ostringstream;
36 typedef basic_ostringstream<char> ostringstream;
37 typedef basic_ostringstream<wchar_t> wostringstream;
39 template <class charT, class traits, class Allocator>
40 class basic_stringstream;
41 typedef basic_stringstream<char> stringstream;
42 typedef basic_stringstream<wchar_t> wstringstream;
43 _GLIBCXX_END_NAMESPACE_CXX11