[GENINCDATA]
[reactos.git] / include / c++ / stlport / stl / _facets_fwd.h
1 #ifndef _STLP_FACETS_FWD_H
2 #define _STLP_FACETS_FWD_H
3
4
5 #include <stl/_iosfwd.h>
6
7 _STLP_BEGIN_NAMESPACE
8
9 #if defined (_STLP_LIMITED_DEFAULT_TEMPLATES)
10 template <class _CharT, class _InputIter>
11 #else
12 template <class _CharT, class _InputIter = istreambuf_iterator<_CharT, char_traits<_CharT> > >
13 #endif
14 class money_get;
15
16 #if defined (_STLP_LIMITED_DEFAULT_TEMPLATES)
17 template <class _CharT, class _OutputIter>
18 #else
19 template <class _CharT, class _OutputIter = ostreambuf_iterator<_CharT, char_traits<_CharT> > >
20 #endif
21 class money_put;
22
23 #if defined (_STLP_LIMITED_DEFAULT_TEMPLATES)
24 template <class _CharT, class _InputIter>
25 #else
26 template <class _CharT, class _InputIter = istreambuf_iterator<_CharT, char_traits<_CharT> > >
27 #endif
28 class num_get;
29
30 #if defined (_STLP_LIMITED_DEFAULT_TEMPLATES)
31 template <class _CharT, class _OutputIter>
32 #else
33 template <class _CharT, class _OutputIter = ostreambuf_iterator<_CharT, char_traits<_CharT> > >
34 #endif
35 class num_put;
36
37 #if defined (_STLP_LIMITED_DEFAULT_TEMPLATES)
38 template <class _Ch, class _InIt>
39 #else
40 template <class _Ch, class _InIt = istreambuf_iterator<_Ch, char_traits<_Ch> > >
41 #endif
42 class time_get;
43
44 #if defined (_STLP_LIMITED_DEFAULT_TEMPLATES)
45 template <class _Ch, class _OutIt>
46 #else
47 template <class _Ch, class _OutIt = ostreambuf_iterator<_Ch, char_traits<_Ch> > >
48 #endif
49 class time_put;
50
51 _STLP_END_NAMESPACE
52
53 #endif