epoc32/include/tools/stlport/stl/msl_string.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@4
     1
/*
williamr@4
     2
 * Copyright (c) 1998
williamr@4
     3
 * Mark of the Unicorn, Inc.
williamr@4
     4
 *
williamr@4
     5
 * Permission to use, copy, modify, distribute and sell this software
williamr@4
     6
 * and its documentation for any purpose is hereby granted without fee,
williamr@4
     7
 * provided that the above copyright notice appear in all copies and
williamr@4
     8
 * that both that copyright notice and this permission notice appear
williamr@4
     9
 * in supporting documentation.  Mark of the Unicorn, Inc. makes no
williamr@4
    10
 * representations about the suitability of this software for any
williamr@4
    11
 * purpose.  It is provided "as is" without express or implied warranty.
williamr@4
    12
 *
williamr@4
    13
 */
williamr@4
    14
#if defined( _STLP_USE_MSIPL ) && !defined( _STLP_MSL_STRING_H_ )
williamr@4
    15
#define _STLP_MSL_STRING_H_
williamr@4
    16
williamr@4
    17
//# define char_traits __msl_char_traits
williamr@4
    18
# define basic_string __msl_basic_string
williamr@4
    19
# define b_str_ref __msl_b_str_ref
williamr@4
    20
# define basic_istream __msl_basic_istream
williamr@4
    21
# define basic_ostream __msl_basic_ostream
williamr@4
    22
# define string __msl_string
williamr@4
    23
# define wstring __msl_wstring
williamr@4
    24
# define iterator_traits __msl_iterator_traits
williamr@4
    25
williamr@4
    26
namespace std
williamr@4
    27
{
williamr@4
    28
  template<class charT, class traits> class basic_istream;
williamr@4
    29
  template<class charT, class traits> class basic_ostream;
williamr@4
    30
}
williamr@4
    31
williamr@4
    32
# include _STLP_NATIVE_HEADER(string)
williamr@4
    33
// # undef char_traits
williamr@4
    34
# undef basic_string
williamr@4
    35
# undef b_str_ref
williamr@4
    36
# undef basic_istream
williamr@4
    37
# undef basic_ostream
williamr@4
    38
# undef string
williamr@4
    39
# undef wstring
williamr@4
    40
# undef iterator_traits
williamr@4
    41
williamr@4
    42
#endif