epoc32/include/stdapis/stlport/config/stl_gccxml.h
branchSymbian3
changeset 4 837f303aceeb
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/epoc32/include/stdapis/stlport/config/stl_gccxml.h	Wed Mar 31 12:33:34 2010 +0100
     1.3 @@ -0,0 +1,47 @@
     1.4 +/*
     1.5 + * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
     1.6 + */  
     1.7 +// =============================================================================
     1.8 +//	stl_rvct.h
     1.9 +//	This is a list of settings for STLport specific to the ARM RVCT compiler.
    1.10 +//	Do not include this file directly.
    1.11 +// =============================================================================
    1.12 +
    1.13 +# ifndef _STLP_GCCXML_H
    1.14 +#  define  _STLP_GCCXML_H
    1.15 +
    1.16 +
    1.17 +/*
    1.18 +// Uncomment if member template classes are not available
    1.19 +#if defined(__WINS__)
    1.20 +#  define _STLP_NO_MEMBER_TEMPLATE_CLASSES   1
    1.21 +#endif
    1.22 +
    1.23 +// Uncomment if partial specialization is not available
    1.24 +#if defined(__WINS__)
    1.25 +#  define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
    1.26 +#endif
    1.27 +*/
    1.28 +
    1.29 +//#warning ********** COMPILER SETTINGS **********
    1.30 +// -----------------------------------------------------------------------------
    1.31 +//  wstring support
    1.32 +//  This is a bit confusing.
    1.33 +//  * _STLP_NO_WCHAR_T inhibits the standard C wchar functions (Symbian doesn't 
    1.34 +//    have them).
    1.35 +//  * _STLP_HAS_WCHAR_T triggers the typedef of wstring.  It's based on wint_t,
    1.36 +//    which isn't typedef's elsewhere, so we take care of it here.
    1.37 +// -----------------------------------------------------------------------------
    1.38 +
    1.39 +#define _STLP_HAS_WCHAR_T 1
    1.40 +#  include <wchar.h>
    1.41 +
    1.42 +#ifdef _WCHAR_T
    1.43 +#warning ********** _WCHAR_T is defined **********
    1.44 +#endif
    1.45 +
    1.46 +
    1.47 +#define _STLP_LIBSTD_CPP_NO_STATIC_VAR_
    1.48 +#define _STLP_INIT_AMBIGUITY
    1.49 +
    1.50 +#endif // _STLP_RVCT_H