#ifndef __IOSFWD_H #define __IOSFWD_H #pragma option push -b -a8 -pc -Vx- -Ve- -w-inl -w-aus -w-sig // -*- C++ -*- #ifndef __STD_IOSFWD__ #define __STD_IOSFWD__ /*************************************************************************** * * iosfwd - forward declarations for the iostreams * *************************************************************************** * * Copyright (c) 1994-1999 Rogue Wave Software, Inc. All Rights Reserved. * * This computer software is owned by Rogue Wave Software, Inc. and is * protected by U.S. copyright laws and other laws and by international * treaties. This computer software is furnished by Rogue Wave Software, * Inc. pursuant to a written license agreement and may be used, copied, * transmitted, and stored only in accordance with the terms of such * license and with the inclusion of the above copyright notice. This * computer software or any other copies thereof may not be provided or * otherwise made available to any other person. * * U.S. Government Restricted Rights. This computer software is provided * with Restricted Rights. Use, duplication, or disclosure by the * Government is subject to restrictions as set forth in subparagraph (c) * (1) (ii) of The Rights in Technical Data and Computer Software clause * at DFARS 252.227-7013 or subparagraphs (c) (1) and (2) of the * Commercial Computer Software – Restricted Rights at 48 CFR 52.227-19, * as applicable. Manufacturer is Rogue Wave Software, Inc., 5500 * Flatiron Parkway, Boulder, Colorado 80301 USA. * **************************************************************************/ #include #include #ifndef _RWSTD_NO_WCHAR_H #include #endif // _RWSTD_NO_WCHAR_H #ifndef _RWSTD_NO_NAMESPACE namespace std { #endif template struct _RWSTDExportTemplate char_traits; template class _RWSTDExportTemplate allocator; template class _RWSTDExportTemplate fpos; #ifdef _RWSTD_NO_MBSTATE_T class _RWSTDExportTemplate mbstate_t; #endif typedef fpos streampos; typedef fpos wstreampos; typedef long streamoff; typedef long wstreamoff; #ifndef _RWSTD_NO_NAMESPACE } #endif #include #ifndef _RWSTD_NO_NAMESPACE namespace std { #endif #ifndef _RWSTD_NO_COMPLEX_DEFAULT_TEMPLATES template > class _RWSTDExportTemplate basic_ios; template > class _RWSTDExportTemplate basic_streambuf; template > class _RWSTDExportTemplate basic_istream; template > class _RWSTDExportTemplate basic_ostream; template, class Allocator = allocator > class _RWSTDExportTemplate basic_stringbuf; template, class Allocator = allocator > class _RWSTDExportTemplate basic_istringstream; template, class Allocator = allocator > class _RWSTDExportTemplate basic_ostringstream; template > class _RWSTDExportTemplate basic_filebuf; template > class _RWSTDExportTemplate basic_ifstream; template > class _RWSTDExportTemplate basic_ofstream; template > class _RWSTDExportTemplate ostream_iterator; template, class Distance = ptrdiff_t > class _RWSTDExportTemplate istream_iterator; template > class _RWSTDExportTemplate ostreambuf_iterator; template > class _RWSTDExportTemplate istreambuf_iterator; template > class _RWSTDExportTemplate basic_iostream; template > class _RWSTDExportTemplate basic_fstream; template, class Allocator = allocator > class _RWSTDExportTemplate basic_stringstream; #else template class _RWSTDExportTemplate basic_ios; template class _RWSTDExportTemplate basic_streambuf; template class _RWSTDExportTemplate basic_istream; template class _RWSTDExportTemplate basic_ostream; template class _RWSTDExportTemplate basic_stringbuf; template class _RWSTDExportTemplate basic_istringstream; template class _RWSTDExportTemplate basic_ostringstream; template class _RWSTDExportTemplate basic_filebuf; template class _RWSTDExportTemplate basic_ifstream; template class _RWSTDExportTemplate basic_ofstream; template class _RWSTDExportTemplate ostream_iterator; template class _RWSTDExportTemplate istream_iterator; template class _RWSTDExportTemplate ostreambuf_iterator; template class _RWSTDExportTemplate istreambuf_iterator; template class _RWSTDExportTemplate basic_iostream; template class _RWSTDExportTemplate basic_fstream; template class _RWSTDExportTemplate basic_stringstream; #endif // _RWSTD_NO_COMPLEX_DEFAULT_TEMPLATES #ifndef _RWSTD_NO_COMPLEX_DEFAULT_TEMPLATES typedef basic_ios ios; typedef basic_streambuf streambuf; typedef basic_istream istream; typedef basic_ostream ostream; typedef basic_stringbuf stringbuf; typedef basic_istringstream istringstream; typedef basic_ostringstream ostringstream; typedef basic_filebuf filebuf; typedef basic_ifstream ifstream; typedef basic_ofstream ofstream; typedef basic_fstream fstream; typedef basic_iostream iostream; typedef basic_stringstream stringstream; #ifndef _RWSTD_NO_WIDE_CHAR typedef basic_ios wios; typedef basic_streambuf wstreambuf; typedef basic_istream wistream; typedef basic_ostream wostream; typedef basic_stringbuf wstringbuf; typedef basic_istringstream wistringstream; typedef basic_ostringstream wostringstream; typedef basic_filebuf wfilebuf; typedef basic_ifstream wifstream; typedef basic_ofstream wofstream; typedef basic_fstream wfstream; typedef basic_iostream wiostream; typedef basic_stringstream wstringstream; #endif // _RWSTD_NO_WIDE_CHAR #else typedef basic_ios > ios; typedef basic_streambuf > streambuf; typedef basic_istream > istream; typedef basic_ostream > ostream; typedef basic_stringbuf, allocator > stringbuf; typedef basic_istringstream, allocator > istringstream; typedef basic_ostringstream, allocator > ostringstream; typedef basic_filebuf > filebuf; typedef basic_ifstream > ifstream; typedef basic_ofstream > ofstream; typedef basic_fstream > fstream; typedef basic_iostream > iostream; typedef basic_stringstream, allocator > stringstream; #ifndef _RWSTD_NO_WIDE_CHAR typedef basic_ios > wios; typedef basic_streambuf > wstreambuf; typedef basic_istream > wistream; typedef basic_ostream > wostream; typedef basic_stringbuf, allocator > wstringbuf; typedef basic_istringstream, allocator > wistringstream; typedef basic_ostringstream, allocator > wostringstream; typedef basic_filebuf > wfilebuf; typedef basic_ifstream > wifstream; typedef basic_ofstream > wofstream; typedef basic_fstream > wfstream; typedef basic_iostream > wiostream; typedef basic_stringstream, allocator > wstringstream; #endif // _RWSTD_NO_WIDE_CHAR #endif // _RWSTD_NO_COMPLEX_DEFAULT_TEMPLATES #ifndef _RWSTD_NO_NAMESPACE } #endif #endif // __STD_IOSFWD__ #ifndef __USING_STD_NAMES__ using namespace std; #endif #pragma option pop #endif /* __IOSFWD_H */