epoc32/include/stdapis/stlport/stl/_epilog.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 0 061f57f2323e
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.
williamr@2
     1
/* NOTE : this header has no guards and is MEANT for multiple inclusion !
williamr@2
     2
 * If you are using "header protection" option with your compiler,
williamr@2
     3
 * please also find #pragma which disables it and put it here, to
williamr@2
     4
 * allow reentrancy of this header.
williamr@2
     5
 */
williamr@2
     6
williamr@2
     7
/* If the platform provides any specific epilog actions,
williamr@2
     8
   like #pragmas, do include platform-specific prolog file */
williamr@2
     9
# if defined (_STLP_HAS_SPECIFIC_PROLOG_EPILOG)
williamr@2
    10
#  include <config/_epilog.h>
williamr@2
    11
# endif
williamr@2
    12
williamr@2
    13
# ifndef _STLP_NO_POST_COMPATIBLE_SECTION
williamr@2
    14
#  include <stl/_config_compat_post.h>
williamr@2
    15
# endif
williamr@2
    16
williamr@2
    17
/* provide a mechanism to redefine std:: namespace in a way that is transparent to the 
williamr@2
    18
 * user. _STLP_REDEFINE_STD is being used for wrapper files that include native headers
williamr@2
    19
 * to temporary undef the std macro. */
williamr@2
    20
#  if defined ( _STLP_USE_NAMESPACES ) && (defined ( _STLP_USE_OWN_NAMESPACE ) && !defined ( _STLP_REDEFINE_STD ) )
williamr@2
    21
#   undef _STLP_REDEFINE_STD
williamr@2
    22
#   define _STLP_REDEFINE_STD 1
williamr@2
    23
#  endif
williamr@2
    24
williamr@2
    25
# if defined (_STLP_REDEFINE_STD)
williamr@2
    26
/*  We redefine "std" to "stlport", so that user code may use std:: transparently */
williamr@2
    27
#   undef  std
williamr@2
    28
#   define std STLPORT
williamr@2
    29
# else
williamr@2
    30
# if defined(__cplusplus)
williamr@2
    31
#  ifndef _STLP_CONFIG_H
williamr@2
    32
#   include <stl/_config.h>
williamr@2
    33
#  endif
williamr@2
    34
williamr@2
    35
# endif /* __cplusplus */
williamr@2
    36
# endif
williamr@2
    37
williamr@2
    38
williamr@2
    39
williamr@2
    40
williamr@2
    41
williamr@2
    42
williamr@2
    43
williamr@2
    44