os/ossrv/stdcpp/src/stlport_prefix.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/stdcpp/src/stlport_prefix.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,70 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +  
    1.22 +#ifndef STLPORT_PREFIX_H
    1.23 +# define STLPORT_PREFIX_H
    1.24 +
    1.25 +# define __BUILDING_STLPORT 1
    1.26 +
    1.27 +#if defined (__SYMBIAN32__)
    1.28 +//#pragma message("subpressing local implementation.")
    1.29 +//#   define _STLP_REAL_LOCALE_IMPLEMENTED
    1.30 +#   undef _STLP_REAL_LOCALE_IMPLEMENTED
    1.31 +#else
    1.32 +# if defined (_WIN32) || defined (WIN32)
    1.33 +#  ifdef __cplusplus
    1.34 +#   define WIN32_LEAN_AND_MEAN
    1.35 +#   define NOSERVICE
    1.36 +#  endif
    1.37 +#  if !(defined (__CYGWIN__) || defined(_WIN32_WCE))
    1.38 +#   define _STLP_REAL_LOCALE_IMPLEMENTED
    1.39 +#  endif
    1.40 +# endif
    1.41 +#endif
    1.42 +
    1.43 +#   undef _STLP_NO_FORCE_INSTANTIATE
    1.44 +
    1.45 +/* Please add extra compilation switches for particular compilers here */
    1.46 +
    1.47 +# include <stl/_config.h>
    1.48 +
    1.49 +# if defined (_STLP_USE_TEMPLATE_EXPORT) && defined (_STLP_USE_DECLSPEC) && ! defined (_STLP_EXPOSE_GLOBALS_IMPLEMENTATION)
    1.50 +#  define _STLP_EXPOSE_GLOBALS_IMPLEMENTATION
    1.51 +# endif
    1.52 +
    1.53 +# ifdef __cplusplus
    1.54 +
    1.55 +# include <ctime>
    1.56 +# if defined (_STLP_USE_NAMESPACES) && ! defined (_STLP_VENDOR_GLOBAL_CSTD)
    1.57 +using _STLP_VENDOR_CSTD::time_t;
    1.58 +# endif
    1.59 +
    1.60 +# if defined (_STLP_FUNCTION_TMPL_PARTIAL_ORDER) || defined (__BORLANDC__)
    1.61 +#ifdef __SYMBIAN32__
    1.62 +#  define _STLP_OPERATOR_SPEC  EXPORT_C
    1.63 +#else
    1.64 +#  define _STLP_OPERATOR_SPEC _STLP_DECLSPEC 
    1.65 +#endif
    1.66 +# else
    1.67 +#  define _STLP_OPERATOR_SPEC _STLP_TEMPLATE_NULL _STLP_DECLSPEC
    1.68 +# endif
    1.69 +
    1.70 +# endif /* __cplusplus */
    1.71 +
    1.72 +#endif /* PREFIX */
    1.73 +