epoc32/include/stdapis/stlport/config/stl_winscw.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.
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18   
    19 // =============================================================================
    20 //	stl_winscw.h
    21 //	This is a list of settings for STLport specific to the Metrowerks
    22 //  CodeWarrior for Symbian compiler.  Do not include this file directly.
    23 // =============================================================================
    24 
    25 #ifndef _STLP_WINSCW
    26 #	define  _STLP_WINSCW
    27 
    28 // Uncomment if member template classes are not available
    29 #if defined(__WINS__)
    30 //#  define _STLP_NO_MEMBER_TEMPLATE_CLASSES   1
    31 #endif
    32 
    33 // Uncomment if partial specialization is not available
    34 #if defined(__WINS__)
    35 //#  define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
    36 #endif
    37 
    38 // -----------------------------------------------------------------------------
    39 //  wstring support
    40 //  This is a bit confusing.
    41 //  * _STLP_NO_WCHAR_T inhibits the standard C wchar functions (Symbian doesn't 
    42 //    have them).
    43 //  * _STLP_HAS_WCHAR_T triggers the typedef of wstring.  It's based on wint_t,
    44 //    which isn't typedef's elsewhere, so we take care of it here.
    45 // -----------------------------------------------------------------------------
    46 
    47 #	define _STLP_HAS_WCHAR_T 1
    48 #	define _STLP_WCHAR_T_IS_USHORT 1
    49 #  include <wchar.h>
    50 
    51 
    52 #define __LIBSTD_CPP_SYMBIAN32_WSD__
    53 
    54 //==========================================================
    55 #endif  // _STLP_WINSCW