epoc32/include/stdapis/stlport/stl/_abbrevs.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
permissions -rw-r--r--
Final list of Symbian^2 public API header files
williamr@2
     1
/*
williamr@2
     2
 *
williamr@2
     3
 * Copyright (c) 1999 
williamr@2
     4
 * Boris Fomitchev
williamr@2
     5
 *
williamr@2
     6
 * This material is provided "as is", with absolutely no warranty expressed
williamr@2
     7
 * or implied. Any use is at your own risk.
williamr@2
     8
 *
williamr@2
     9
 * Permission to use or copy this software for any purpose is hereby granted 
williamr@2
    10
 * without fee, provided the above notices are retained on all copies.
williamr@2
    11
 * Permission to modify the code and to distribute modified code is granted,
williamr@2
    12
 * provided the above notices are retained, and a notice that the code was
williamr@2
    13
 * modified is included with the above copyright notice.
williamr@2
    14
 *
williamr@2
    15
 */
williamr@2
    16
williamr@2
    17
/* NOTE: This is an internal header file, included by other STL headers.
williamr@2
    18
 *   You should not attempt to use it directly.
williamr@2
    19
 */
williamr@2
    20
williamr@2
    21
#ifndef _STLP_INTERNAL_ABBREVS_H
williamr@2
    22
# define _STLP_INTERNAL_ABBREVS_H
williamr@2
    23
williamr@2
    24
// ugliness is intentional - to reduce conflicts
williamr@2
    25
#  define input_iterator_tag             _In__ItT
williamr@2
    26
#  define output_iterator_tag            _Ou__ItT
williamr@2
    27
#  define bidirectional_iterator_tag     _Bd__ItT
williamr@2
    28
#  define random_access_iterator_tag     _Ra__ItT
williamr@2
    29
#  define input_iterator                 _In__It
williamr@2
    30
#  define output_iterator                _Ou__It
williamr@2
    31
#  define bidirectional_iterator         _Bd__It
williamr@2
    32
#  define random_access_iterator         _Ra__It
williamr@2
    33
#  define reverse_bidirectional_iterator _rBd__It
williamr@2
    34
#  define reverse_iterator               _r__It
williamr@2
    35
#  define back_insert_iterator           _bI__It
williamr@2
    36
#  define front_insert_iterator          _fI__It
williamr@2
    37
#  define raw_storage_iterator           _rS__It
williamr@2
    38
#  define _Const_traits _C_Tr
williamr@2
    39
#  define _Nonconst_traits _N_Tr
williamr@2
    40
williamr@2
    41
// ugliness is intentional - to reduce conflicts probability
williamr@2
    42
#  define __malloc_alloc   M__A
williamr@2
    43
#  define __node_alloc     D__A
williamr@2
    44
#  define __new_alloc      N__A
williamr@2
    45
#  define __debug_alloc    G__A
williamr@2
    46
williamr@2
    47
#  define __deque_iterator         _dQ__It
williamr@2
    48
#  define _Buf_traits              _dQ__BTr
williamr@2
    49
#  define _Deque_iterator          _Dq__It
williamr@2
    50
williamr@2
    51
#  define _Select1st _S1st
williamr@2
    52
#  define _Select2nd _S2nd
williamr@2
    53
williamr@2
    54
#  define _Hashtable_iterator         _hT__It
williamr@2
    55
#  define _Hashtable_const_iterator   _hT__cIt
williamr@2
    56
#  define _Hashtable_node             _hT__N
williamr@2
    57
#  define _Hashtable_base             _hT__B
williamr@2
    58
#  define _Ht_iterator _Ht_It
williamr@2
    59
williamr@2
    60
#  define __list_iterator         _L__It
williamr@2
    61
#  define __slist_iterator         _SL__It
williamr@2
    62
williamr@2
    63
#  define _Rb_tree_node_base       _rbT__NB
williamr@2
    64
#  define _Rb_tree_node            _rbT__N
williamr@2
    65
#  define _Rb_base_iterator        _rbTB__It
williamr@2
    66
#  define _Rb_tree_base_iterator   _rbT__It
williamr@2
    67
#  define _Rb_tree_base            _rbT__B
williamr@2
    68
williamr@2
    69
#endif
williamr@2
    70