103a78d15Sespie // Explicit instantiation file. 203a78d15Sespie 303a78d15Sespie // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 403a78d15Sespie // Free Software Foundation, Inc. 503a78d15Sespie // 603a78d15Sespie // This file is part of the GNU ISO C++ Library. This library is free 703a78d15Sespie // software; you can redistribute it and/or modify it under the 803a78d15Sespie // terms of the GNU General Public License as published by the 903a78d15Sespie // Free Software Foundation; either version 2, or (at your option) 1003a78d15Sespie // any later version. 1103a78d15Sespie 1203a78d15Sespie // This library is distributed in the hope that it will be useful, 1303a78d15Sespie // but WITHOUT ANY WARRANTY; without even the implied warranty of 1403a78d15Sespie // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1503a78d15Sespie // GNU General Public License for more details. 1603a78d15Sespie 1703a78d15Sespie // You should have received a copy of the GNU General Public License along 1803a78d15Sespie // with this library; see the file COPYING. If not, write to the Free 1903a78d15Sespie // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, 2003a78d15Sespie // USA. 2103a78d15Sespie 2203a78d15Sespie // As a special exception, you may use this file as part of a free software 2303a78d15Sespie // library without restriction. Specifically, if other files instantiate 2403a78d15Sespie // templates or use macros or inline functions from this file, or you compile 2503a78d15Sespie // this file and link it with other files to produce an executable, this 2603a78d15Sespie // file does not by itself cause the resulting executable to be covered by 2703a78d15Sespie // the GNU General Public License. This exception does not however 2803a78d15Sespie // invalidate any other reasons why the executable file might be covered by 2903a78d15Sespie // the GNU General Public License. 3003a78d15Sespie 3103a78d15Sespie // 3203a78d15Sespie // ISO C++ 14882: 3303a78d15Sespie // 3403a78d15Sespie 3503a78d15Sespie #include <fstream> 3603a78d15Sespie 3703a78d15Sespie namespace std 3803a78d15Sespie { 3903a78d15Sespie // filebuf 4003a78d15Sespie template class basic_filebuf<char, char_traits<char> >; 41*c2fb3212Sespie #if defined(_GLIBCPP_USE_WCHAR_T) || defined(_GLIBCPP_USE_TYPE_WCHAR_T) 4203a78d15Sespie template class basic_filebuf<wchar_t, char_traits<wchar_t> >; 4303a78d15Sespie #endif 4403a78d15Sespie 4503a78d15Sespie // ifstream 4603a78d15Sespie template class basic_ifstream<char>; 47*c2fb3212Sespie #if defined(_GLIBCPP_USE_WCHAR_T) || defined(_GLIBCPP_USE_TYPE_WCHAR_T) 4803a78d15Sespie template class basic_ifstream<wchar_t>; 4903a78d15Sespie #endif 5003a78d15Sespie 5103a78d15Sespie // ofstream 5203a78d15Sespie template class basic_ofstream<char>; 53*c2fb3212Sespie #if defined(_GLIBCPP_USE_WCHAR_T) || defined(_GLIBCPP_USE_TYPE_WCHAR_T) 5403a78d15Sespie template class basic_ofstream<wchar_t>; 5503a78d15Sespie #endif 5603a78d15Sespie 5703a78d15Sespie // fstream 5803a78d15Sespie template class basic_fstream<char>; 59*c2fb3212Sespie #if defined(_GLIBCPP_USE_WCHAR_T) || defined(_GLIBCPP_USE_TYPE_WCHAR_T) 6003a78d15Sespie template class basic_fstream<wchar_t>; 6103a78d15Sespie #endif 6203a78d15Sespie } // namespace std 63