home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stlpt453.zip / STLport-4.5.3 / src / ostream.cpp < prev    next >
C/C++ Source or Header  |  2001-01-26  |  2KB  |  58 lines

  1. /*
  2.  * Copyright (c) 1999
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Copyright (c) 1999 
  6.  * Boris Fomitchev
  7.  *
  8.  * This material is provided "as is", with absolutely no warranty expressed
  9.  * or implied. Any use is at your own risk.
  10.  *
  11.  * Permission to use or copy this software for any purpose is hereby granted 
  12.  * without fee, provided the above notices are retained on all copies.
  13.  * Permission to modify the code and to distribute modified code is granted,
  14.  * provided the above notices are retained, and a notice that the code was
  15.  * modified is included with the above copyright notice.
  16.  *
  17.  */ 
  18. # include "stlport_prefix.h"
  19. #include <stl/_ostream.h>
  20.  
  21. _STLP_BEGIN_NAMESPACE
  22.  
  23. #if !defined(_STLP_NO_FORCE_INSTANTIATE)
  24.  
  25. // instantiations
  26. template  class _STLP_CLASS_DECLSPEC basic_ostream<char, char_traits<char> >;
  27.  
  28. template _STLP_DECLSPEC basic_ostream<char, char_traits<char> >&  _STLP_CALL 
  29. _M_put_num(basic_ostream<char, char_traits<char> >&, long);
  30. template _STLP_DECLSPEC basic_ostream<char, char_traits<char> >&   _STLP_CALL 
  31. _M_put_num(basic_ostream<char, char_traits<char> >&, unsigned long);
  32. #  if defined (_STLP_LONG_LONG)
  33. template _STLP_DECLSPEC basic_ostream<char, char_traits<char> >&  _STLP_CALL
  34. _M_put_num(basic_ostream<char, char_traits<char> >&, unsigned _STLP_LONG_LONG);
  35. template _STLP_DECLSPEC basic_ostream<char, char_traits<char> >& _STLP_CALL
  36. _M_put_num(basic_ostream<char, char_traits<char> >&, _STLP_LONG_LONG);
  37. #  endif
  38.  
  39. # if defined (_STLP_USE_TEMPLATE_EXPORT)
  40. template  class _STLP_CLASS_DECLSPEC _Osentry<char, char_traits<char> >;
  41. # endif
  42.  
  43. #ifndef _STLP_NO_WCHAR_T
  44.  
  45. # if defined (_STLP_USE_TEMPLATE_EXPORT)
  46. template class _STLP_CLASS_DECLSPEC _Osentry<wchar_t, char_traits<wchar_t> >;
  47. # endif
  48. template class _STLP_CLASS_DECLSPEC basic_ostream<wchar_t, char_traits<wchar_t> >;
  49. #endif
  50.  
  51. #endif
  52.  
  53. _STLP_END_NAMESPACE
  54.  
  55. // Local Variables:
  56. // mode:C++
  57. // End:
  58.