epoc32/include/tools/stlport/stl/_abbrevs.h
branchSymbian3
changeset 4 837f303aceeb
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/epoc32/include/tools/stlport/stl/_abbrevs.h	Wed Mar 31 12:33:34 2010 +0100
     1.3 @@ -0,0 +1,77 @@
     1.4 +/*
     1.5 + *
     1.6 + * Copyright (c) 1999
     1.7 + * Boris Fomitchev
     1.8 + *
     1.9 + * This material is provided "as is", with absolutely no warranty expressed
    1.10 + * or implied. Any use is at your own risk.
    1.11 + *
    1.12 + * Permission to use or copy this software for any purpose is hereby granted
    1.13 + * without fee, provided the above notices are retained on all copies.
    1.14 + * Permission to modify the code and to distribute modified code is granted,
    1.15 + * provided the above notices are retained, and a notice that the code was
    1.16 + * modified is included with the above copyright notice.
    1.17 + *
    1.18 + */
    1.19 +
    1.20 +/* NOTE: This is an internal header file, included by other STL headers.
    1.21 + *   You should not attempt to use it directly.
    1.22 + */
    1.23 +
    1.24 +#ifndef _STLP_INTERNAL_ABBREVS_H
    1.25 +# define _STLP_INTERNAL_ABBREVS_H
    1.26 +
    1.27 +// ugliness is intentional - to reduce conflicts
    1.28 +#  define input_iterator_tag             _In__ItT
    1.29 +#  define output_iterator_tag            _Ou__ItT
    1.30 +#  define bidirectional_iterator_tag     _Bd__ItT
    1.31 +#  define random_access_iterator_tag     _Ra__ItT
    1.32 +#  define input_iterator                 _In__It
    1.33 +#  define output_iterator                _Ou__It
    1.34 +#  define bidirectional_iterator         _Bd__It
    1.35 +#  define random_access_iterator         _Ra__It
    1.36 +#  define reverse_bidirectional_iterator _rBd__It
    1.37 +#  define reverse_iterator               _r__It
    1.38 +#  define back_insert_iterator           _bI__It
    1.39 +#  define front_insert_iterator          _fI__It
    1.40 +#  define raw_storage_iterator           _rS__It
    1.41 +#  define _Const_traits                  _C_Tr
    1.42 +#  define _Const_Const_traits            _CC_Tr
    1.43 +#  define _Nonconst_traits               _N_Tr
    1.44 +#  define _Nonconst_Const_traits         _NC_Tr
    1.45 +
    1.46 +// ugliness is intentional - to reduce conflicts probability
    1.47 +#  define __malloc_alloc    M__A
    1.48 +#  define __node_alloc      D__A
    1.49 +#  define __new_alloc       N__A
    1.50 +#  define __debug_alloc     G__A
    1.51 +#  define _STLP_alloc_proxy P__A
    1.52 +
    1.53 +#  define _Deque_iterator_base     _Dq__ItB
    1.54 +#  define _Deque_iterator          _Dq__It
    1.55 +
    1.56 +#  define _Select1st                  _S1st
    1.57 +#  define _Select2nd                  _S2nd
    1.58 +#  define __move_source               __m_s
    1.59 +#  define _Vector_nonconst_traits     _V_nct
    1.60 +
    1.61 +#  define _Ht_iterator                _Ht_It
    1.62 +
    1.63 +#  define _List_node_base          _L__NB
    1.64 +#  define _List_iterator_base      _L__ItB
    1.65 +#  define _List_iterator           _L__It
    1.66 +
    1.67 +#  define _Slist_iterator_base     _SL__ItB
    1.68 +#  define _Slist_iterator          _SL__It
    1.69 +
    1.70 +#  define _Rb_tree_node_base       _rbT__NB
    1.71 +#  define _Rb_tree_node            _rbT__N
    1.72 +#  define _Rb_tree_base_iterator   _rbT__It
    1.73 +#  define _Rb_tree_base            _rbT__B
    1.74 +
    1.75 +#  if defined (__DMC__) && defined (_STLP_DEBUG)
    1.76 +#    define _NonDbg_hashtable      _Nd_Ht
    1.77 +#    define _DBG_iter              _d__It
    1.78 +#  endif
    1.79 +#endif
    1.80 +