1102782Skan// Explicit instantiation file.
2102782Skan
3169691Skan// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
4102782Skan// Free Software Foundation, Inc.
5102782Skan//
6102782Skan// This file is part of the GNU ISO C++ Library.  This library is free
7102782Skan// software; you can redistribute it and/or modify it under the
8102782Skan// terms of the GNU General Public License as published by the
9102782Skan// Free Software Foundation; either version 2, or (at your option)
10102782Skan// any later version.
11102782Skan
12102782Skan// This library is distributed in the hope that it will be useful,
13102782Skan// but WITHOUT ANY WARRANTY; without even the implied warranty of
14102782Skan// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15102782Skan// GNU General Public License for more details.
16102782Skan
17102782Skan// You should have received a copy of the GNU General Public License along
18102782Skan// with this library; see the file COPYING.  If not, write to the Free
19169691Skan// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20102782Skan// USA.
21102782Skan
22102782Skan// As a special exception, you may use this file as part of a free software
23102782Skan// library without restriction.  Specifically, if other files instantiate
24102782Skan// templates or use macros or inline functions from this file, or you compile
25102782Skan// this file and link it with other files to produce an executable, this
26102782Skan// file does not by itself cause the resulting executable to be covered by
27102782Skan// the GNU General Public License.  This exception does not however
28102782Skan// invalidate any other reasons why the executable file might be covered by
29102782Skan// the GNU General Public License.
30102782Skan
31102782Skan//
32102782Skan// ISO C++ 14882:
33102782Skan//
34102782Skan
35102782Skan#include <ios>
36102782Skan#include <streambuf>
37102782Skan
38169691Skan_GLIBCXX_BEGIN_NAMESPACE(std)
39169691Skan
40102782Skan  // streambuf
41102782Skan  template class basic_streambuf<char>;
42169691Skan
43169691Skan  template
44169691Skan    streamsize
45169691Skan    __copy_streambufs(basic_streambuf<char>*, basic_streambuf<char>*);
46169691Skan
47169691Skan  template
48169691Skan    streamsize
49169691Skan    __copy_streambufs_eof(basic_streambuf<char>*,
50169691Skan			  basic_streambuf<char>*, bool&);
51169691Skan
52132720Skan#ifdef _GLIBCXX_USE_WCHAR_T
53169691Skan  // wstreambuf
54102782Skan  template class basic_streambuf<wchar_t>;
55102782Skan
56102782Skan  template
57102782Skan    streamsize
58169691Skan    __copy_streambufs(basic_streambuf<wchar_t>*, basic_streambuf<wchar_t>*);
59169691Skan
60102782Skan  template
61102782Skan    streamsize
62169691Skan    __copy_streambufs_eof(basic_streambuf<wchar_t>*,
63169691Skan			  basic_streambuf<wchar_t>*, bool&);
64102782Skan#endif
65169691Skan
66169691Skan_GLIBCXX_END_NAMESPACE
67