1ca6500fcSAlexander Kabaev // Explicit instantiation file.
2ca6500fcSAlexander Kabaev 
3*f8a1b7d9SAlexander Kabaev // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2005
4ca6500fcSAlexander Kabaev // Free Software Foundation, Inc.
5ca6500fcSAlexander Kabaev //
6ca6500fcSAlexander Kabaev // This file is part of the GNU ISO C++ Library.  This library is free
7ca6500fcSAlexander Kabaev // software; you can redistribute it and/or modify it under the
8ca6500fcSAlexander Kabaev // terms of the GNU General Public License as published by the
9ca6500fcSAlexander Kabaev // Free Software Foundation; either version 2, or (at your option)
10ca6500fcSAlexander Kabaev // any later version.
11ca6500fcSAlexander Kabaev 
12ca6500fcSAlexander Kabaev // This library is distributed in the hope that it will be useful,
13ca6500fcSAlexander Kabaev // but WITHOUT ANY WARRANTY; without even the implied warranty of
14ca6500fcSAlexander Kabaev // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15ca6500fcSAlexander Kabaev // GNU General Public License for more details.
16ca6500fcSAlexander Kabaev 
17ca6500fcSAlexander Kabaev // You should have received a copy of the GNU General Public License along
18ca6500fcSAlexander Kabaev // with this library; see the file COPYING.  If not, write to the Free
19*f8a1b7d9SAlexander Kabaev // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20ca6500fcSAlexander Kabaev // USA.
21ca6500fcSAlexander Kabaev 
22ca6500fcSAlexander Kabaev // As a special exception, you may use this file as part of a free software
23ca6500fcSAlexander Kabaev // library without restriction.  Specifically, if other files instantiate
24ca6500fcSAlexander Kabaev // templates or use macros or inline functions from this file, or you compile
25ca6500fcSAlexander Kabaev // this file and link it with other files to produce an executable, this
26ca6500fcSAlexander Kabaev // file does not by itself cause the resulting executable to be covered by
27ca6500fcSAlexander Kabaev // the GNU General Public License.  This exception does not however
28ca6500fcSAlexander Kabaev // invalidate any other reasons why the executable file might be covered by
29ca6500fcSAlexander Kabaev // the GNU General Public License.
30ca6500fcSAlexander Kabaev 
31ca6500fcSAlexander Kabaev //
32ca6500fcSAlexander Kabaev // ISO C++ 14882:
33ca6500fcSAlexander Kabaev //
34ca6500fcSAlexander Kabaev 
35ca6500fcSAlexander Kabaev #include <fstream>
36ca6500fcSAlexander Kabaev 
37*f8a1b7d9SAlexander Kabaev _GLIBCXX_BEGIN_NAMESPACE(std)
38*f8a1b7d9SAlexander Kabaev 
39ca6500fcSAlexander Kabaev   template class basic_filebuf<char, char_traits<char> >;
40*f8a1b7d9SAlexander Kabaev   template class basic_ifstream<char>;
41*f8a1b7d9SAlexander Kabaev   template class basic_ofstream<char>;
42*f8a1b7d9SAlexander Kabaev   template class basic_fstream<char>;
43*f8a1b7d9SAlexander Kabaev 
44ffeaf689SAlexander Kabaev #ifdef _GLIBCXX_USE_WCHAR_T
45ca6500fcSAlexander Kabaev   template class basic_filebuf<wchar_t, char_traits<wchar_t> >;
46ca6500fcSAlexander Kabaev   template class basic_ifstream<wchar_t>;
47ca6500fcSAlexander Kabaev   template class basic_ofstream<wchar_t>;
48ca6500fcSAlexander Kabaev   template class basic_fstream<wchar_t>;
49ca6500fcSAlexander Kabaev #endif
50*f8a1b7d9SAlexander Kabaev 
51*f8a1b7d9SAlexander Kabaev _GLIBCXX_END_NAMESPACE
52