iostream-inst.cc revision 169692
1139743Simp// Explicit instantiation file.
239212Sgibbs
339212Sgibbs// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006
439212Sgibbs// Free Software Foundation, Inc.
539212Sgibbs//
639212Sgibbs// This file is part of the GNU ISO C++ Library.  This library is free
739212Sgibbs// software; you can redistribute it and/or modify it under the
839212Sgibbs// terms of the GNU General Public License as published by the
939212Sgibbs// Free Software Foundation; either version 2, or (at your option)
1039212Sgibbs// any later version.
1139212Sgibbs
1239212Sgibbs// This library is distributed in the hope that it will be useful,
1339212Sgibbs// but WITHOUT ANY WARRANTY; without even the implied warranty of
1439212Sgibbs// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1539212Sgibbs// GNU General Public License for more details.
1639212Sgibbs
1739212Sgibbs// You should have received a copy of the GNU General Public License along
1839212Sgibbs// with this library; see the file COPYING.  If not, write to the Free
1939212Sgibbs// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
2039212Sgibbs// USA.
2139212Sgibbs
2239212Sgibbs// As a special exception, you may use this file as part of a free software
2339212Sgibbs// library without restriction.  Specifically, if other files instantiate
2439212Sgibbs// templates or use macros or inline functions from this file, or you compile
2539212Sgibbs// this file and link it with other files to produce an executable, this
2639212Sgibbs// file does not by itself cause the resulting executable to be covered by
2739212Sgibbs// the GNU General Public License.  This exception does not however
28116161Sobrien// invalidate any other reasons why the executable file might be covered by
29116161Sobrien// the GNU General Public License.
30116161Sobrien
31116161Sobrien//
3239212Sgibbs// ISO C++ 14882:
3374840Sken//
3489114Smsmith
3574840Sken#include <iomanip>
3689114Smsmith
3789114Smsmith_GLIBCXX_BEGIN_NAMESPACE(std)
3874840Sken
3974840Sken  template class _Setfill<char>;
4074840Sken  template _Setfill<char> setfill(char);
4174840Sken  template class basic_iostream<char>;
4274840Sken
4339212Sgibbs#ifdef _GLIBCXX_USE_WCHAR_T
4474840Sken  template class _Setfill<wchar_t>;
4574840Sken  template _Setfill<wchar_t> setfill(wchar_t);
4674840Sken  template class basic_iostream<wchar_t>;
4739212Sgibbs#endif
4874840Sken
4974840Sken_GLIBCXX_END_NAMESPACE
5074840Sken