/home/ntakagi/work/STLport-5.1.5/src/istream.cppGo to the documentation of this file.00001 /* 00002 * Copyright (c) 1999 00003 * Silicon Graphics Computer Systems, Inc. 00004 * 00005 * Copyright (c) 1999 00006 * Boris Fomitchev 00007 * 00008 * This material is provided "as is", with absolutely no warranty expressed 00009 * or implied. Any use is at your own risk. 00010 * 00011 * Permission to use or copy this software for any purpose is hereby granted 00012 * without fee, provided the above notices are retained on all copies. 00013 * Permission to modify the code and to distribute modified code is granted, 00014 * provided the above notices are retained, and a notice that the code was 00015 * modified is included with the above copyright notice. 00016 * 00017 */ 00018 # include "stlport_prefix.h" 00019 00020 #include <istream> 00021 00022 _STLP_BEGIN_NAMESPACE 00023 00024 #if !defined(_STLP_NO_FORCE_INSTANTIATE) 00025 00026 // instantiations 00027 # if defined (_STLP_USE_TEMPLATE_EXPORT) 00028 template class _STLP_CLASS_DECLSPEC _Isentry<char, char_traits<char> >; 00029 # endif 00030 00031 template class _STLP_CLASS_DECLSPEC basic_iostream<char, char_traits<char> >; 00032 00033 # if !defined(_STLP_MSVC) || (_STLP_MSVC > 1100) 00034 template class _STLP_CLASS_DECLSPEC basic_istream<char, char_traits<char> >; 00035 # endif 00036 00037 # if !defined (_STLP_NO_WCHAR_T) 00038 # if defined (_STLP_USE_TEMPLATE_EXPORT) 00039 template class _STLP_CLASS_DECLSPEC _Isentry<wchar_t, char_traits<wchar_t> >; 00040 # endif 00041 # if !defined(_STLP_MSVC) || (_STLP_MSVC > 1100) 00042 template class _STLP_CLASS_DECLSPEC basic_istream<wchar_t, char_traits<wchar_t> >; 00043 # endif 00044 template class _STLP_CLASS_DECLSPEC basic_iostream<wchar_t, char_traits<wchar_t> >; 00045 # endif /* !_STLP_NO_WCHAR_T */ 00046 00047 #endif /* _STLP_NO_FORCE_INSTANTIATE */ 00048 00049 _STLP_END_NAMESPACE 00050 00051 // Local Variables: 00052 // mode:C++ 00053 // End:
Generated on Mon Mar 10 15:32:16 2008 by ![]() |