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 <ostream>
3603a78d15Sespie #include <iomanip>
3703a78d15Sespie 
3803a78d15Sespie namespace std
3903a78d15Sespie {
4003a78d15Sespie   // ostream
4103a78d15Sespie   template class basic_ostream<char>;
4203a78d15Sespie   template ostream& endl(ostream&);
4303a78d15Sespie   template ostream& ends(ostream&);
4403a78d15Sespie   template ostream& flush(ostream&);
4503a78d15Sespie   template ostream& operator<<(ostream&, char);
4603a78d15Sespie   template ostream& operator<<(ostream&, unsigned char);
4703a78d15Sespie   template ostream& operator<<(ostream&, signed char);
4803a78d15Sespie   template ostream& operator<<(ostream&, const char*);
4903a78d15Sespie   template ostream& operator<<(ostream&, const unsigned char*);
5003a78d15Sespie   template ostream& operator<<(ostream&, const signed char*);
5103a78d15Sespie 
5203a78d15Sespie   template ostream& operator<<(ostream&, _Setfill<char>);
5303a78d15Sespie   template ostream& operator<<(ostream&, _Setiosflags);
5403a78d15Sespie   template ostream& operator<<(ostream&, _Resetiosflags);
5503a78d15Sespie   template ostream& operator<<(ostream&, _Setbase);
5603a78d15Sespie   template ostream& operator<<(ostream&, _Setprecision);
5703a78d15Sespie   template ostream& operator<<(ostream&, _Setw);
5803a78d15Sespie 
59*c2fb3212Sespie #if defined(_GLIBCPP_USE_WCHAR_T) || defined(_GLIBCPP_USE_TYPE_WCHAR_T)
6003a78d15Sespie   template class basic_ostream<wchar_t>;
6103a78d15Sespie   template wostream& endl(wostream&);
6203a78d15Sespie   template wostream& ends(wostream&);
6303a78d15Sespie   template wostream& flush(wostream&);
6403a78d15Sespie   template wostream& operator<<(wostream&, wchar_t);
6503a78d15Sespie   template wostream& operator<<(wostream&, char);
6603a78d15Sespie   template wostream& operator<<(wostream&, const wchar_t*);
6703a78d15Sespie   template wostream& operator<<(wostream&, const char*);
6803a78d15Sespie 
6903a78d15Sespie   template wostream& operator<<(wostream&, _Setfill<wchar_t>);
7003a78d15Sespie   template wostream& operator<<(wostream&, _Setiosflags);
7103a78d15Sespie   template wostream& operator<<(wostream&, _Resetiosflags);
7203a78d15Sespie   template wostream& operator<<(wostream&, _Setbase);
7303a78d15Sespie   template wostream& operator<<(wostream&, _Setprecision);
7403a78d15Sespie   template wostream& operator<<(wostream&, _Setw);
7503a78d15Sespie #endif
7603a78d15Sespie } // namespace std
77