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