]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/headers/sstream/synopsis.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / headers / sstream / synopsis.cc
CommitLineData
8856cc8b 1// { dg-do compile }
2
f1717362 3// Copyright (C) 2007-2016 Free Software Foundation, Inc.
8856cc8b 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
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
8856cc8b 9// any later version.
10
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.
15
16// You should have received a copy of the GNU General Public License along
6bc9506f 17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
8856cc8b 19
20#include <sstream>
21
22namespace std {
63f54259 23_GLIBCXX_BEGIN_NAMESPACE_CXX11
8856cc8b 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;
28
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;
33
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;
38
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;
63f54259 43_GLIBCXX_END_NAMESPACE_CXX11
8856cc8b 44}