sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef STLPORT_PREFIX_H
|
sl@0
|
20 |
# define STLPORT_PREFIX_H
|
sl@0
|
21 |
|
sl@0
|
22 |
# define __BUILDING_STLPORT 1
|
sl@0
|
23 |
|
sl@0
|
24 |
#if defined (__SYMBIAN32__)
|
sl@0
|
25 |
//#pragma message("subpressing local implementation.")
|
sl@0
|
26 |
//# define _STLP_REAL_LOCALE_IMPLEMENTED
|
sl@0
|
27 |
# undef _STLP_REAL_LOCALE_IMPLEMENTED
|
sl@0
|
28 |
#else
|
sl@0
|
29 |
# if defined (_WIN32) || defined (WIN32)
|
sl@0
|
30 |
# ifdef __cplusplus
|
sl@0
|
31 |
# define WIN32_LEAN_AND_MEAN
|
sl@0
|
32 |
# define NOSERVICE
|
sl@0
|
33 |
# endif
|
sl@0
|
34 |
# if !(defined (__CYGWIN__) || defined(_WIN32_WCE))
|
sl@0
|
35 |
# define _STLP_REAL_LOCALE_IMPLEMENTED
|
sl@0
|
36 |
# endif
|
sl@0
|
37 |
# endif
|
sl@0
|
38 |
#endif
|
sl@0
|
39 |
|
sl@0
|
40 |
# undef _STLP_NO_FORCE_INSTANTIATE
|
sl@0
|
41 |
|
sl@0
|
42 |
/* Please add extra compilation switches for particular compilers here */
|
sl@0
|
43 |
|
sl@0
|
44 |
# include <stl/_config.h>
|
sl@0
|
45 |
|
sl@0
|
46 |
# if defined (_STLP_USE_TEMPLATE_EXPORT) && defined (_STLP_USE_DECLSPEC) && ! defined (_STLP_EXPOSE_GLOBALS_IMPLEMENTATION)
|
sl@0
|
47 |
# define _STLP_EXPOSE_GLOBALS_IMPLEMENTATION
|
sl@0
|
48 |
# endif
|
sl@0
|
49 |
|
sl@0
|
50 |
# ifdef __cplusplus
|
sl@0
|
51 |
|
sl@0
|
52 |
# include <ctime>
|
sl@0
|
53 |
# if defined (_STLP_USE_NAMESPACES) && ! defined (_STLP_VENDOR_GLOBAL_CSTD)
|
sl@0
|
54 |
using _STLP_VENDOR_CSTD::time_t;
|
sl@0
|
55 |
# endif
|
sl@0
|
56 |
|
sl@0
|
57 |
# if defined (_STLP_FUNCTION_TMPL_PARTIAL_ORDER) || defined (__BORLANDC__)
|
sl@0
|
58 |
#ifdef __SYMBIAN32__
|
sl@0
|
59 |
# define _STLP_OPERATOR_SPEC EXPORT_C
|
sl@0
|
60 |
#else
|
sl@0
|
61 |
# define _STLP_OPERATOR_SPEC _STLP_DECLSPEC
|
sl@0
|
62 |
#endif
|
sl@0
|
63 |
# else
|
sl@0
|
64 |
# define _STLP_OPERATOR_SPEC _STLP_TEMPLATE_NULL _STLP_DECLSPEC
|
sl@0
|
65 |
# endif
|
sl@0
|
66 |
|
sl@0
|
67 |
# endif /* __cplusplus */
|
sl@0
|
68 |
|
sl@0
|
69 |
#endif /* PREFIX */
|
sl@0
|
70 |
|