epoc32/include/stdapis/stlport/stl/msl_string.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
     1.1 --- a/epoc32/include/stdapis/stlport/stl/msl_string.h	Tue Nov 24 13:55:44 2009 +0000
     1.2 +++ b/epoc32/include/stdapis/stlport/stl/msl_string.h	Tue Mar 16 16:12:26 2010 +0000
     1.3 @@ -1,1 +1,42 @@
     1.4 -msl_string.h
     1.5 +/*
     1.6 + * Copyright (c) 1998
     1.7 + * Mark of the Unicorn, Inc.
     1.8 + *
     1.9 + * Permission to use, copy, modify, distribute and sell this software
    1.10 + * and its documentation for any purpose is hereby granted without fee,
    1.11 + * provided that the above copyright notice appear in all copies and
    1.12 + * that both that copyright notice and this permission notice appear
    1.13 + * in supporting documentation.  Mark of the Unicorn, Inc. makes no
    1.14 + * representations about the suitability of this software for any
    1.15 + * purpose.  It is provided "as is" without express or implied warranty.
    1.16 + *
    1.17 + */
    1.18 +#if defined( _STLP_USE_MSIPL ) && !defined( _STLP_MSL_STRING_H_ )
    1.19 +#define _STLP_MSL_STRING_H_
    1.20 +
    1.21 +//# define char_traits __msl_char_traits
    1.22 +# define basic_string __msl_basic_string
    1.23 +# define b_str_ref __msl_b_str_ref
    1.24 +# define basic_istream __msl_basic_istream
    1.25 +# define basic_ostream __msl_basic_ostream
    1.26 +# define string __msl_string
    1.27 +# define wstring __msl_wstring
    1.28 +# define iterator_traits __msl_iterator_traits
    1.29 +
    1.30 +namespace std
    1.31 +{
    1.32 +	template<class charT, class traits> class basic_istream;
    1.33 +	template<class charT, class traits> class basic_ostream;
    1.34 +}
    1.35 +
    1.36 +# include _STLP_NATIVE_HEADER(string)
    1.37 +// # undef char_traits
    1.38 +# undef basic_string
    1.39 +# undef b_str_ref
    1.40 +# undef basic_istream
    1.41 +# undef basic_ostream
    1.42 +# undef string
    1.43 +# undef wstring
    1.44 +# undef iterator_traits
    1.45 +
    1.46 +#endif