/home/ntakagi/work/STLport-5.1.5/stlport/stl/_epilog.hGo to the documentation of this file.00001 /* NOTE : this header has no guards and is MEANT for multiple inclusion! 00002 * If you are using "header protection" option with your compiler, 00003 * please also find #pragma which disables it and put it here, to 00004 * allow reentrancy of this header. 00005 */ 00006 00007 #ifndef _STLP_PROLOG_HEADER_INCLUDED 00008 # error STLport epilog header can not be included as long as prolog has not be included. 00009 #endif 00010 00011 /* If the platform provides any specific epilog actions, 00012 * like #pragmas, do include platform-specific prolog file 00013 */ 00014 #if defined (_STLP_HAS_SPECIFIC_PROLOG_EPILOG) 00015 # include <stl/config/_epilog.h> 00016 #endif 00017 00018 #if !defined (_STLP_NO_POST_COMPATIBLE_SECTION) 00019 # include <stl/_config_compat_post.h> 00020 #endif 00021 00022 #if defined (_STLP_USE_OWN_NAMESPACE) 00023 00024 # if !defined (_STLP_DONT_REDEFINE_STD) 00025 /* We redefine "std" to STLPORT, so that user code may use std:: transparently 00026 * The STLPORT macro contains the STLport namespace name containing all the std 00027 * stuff. 00028 */ 00029 # if defined (std) 00030 /* 00031 * Looks like the compiler native library on which STLport rely defined the std macro. 00032 * This might introduce major incompatibility so report the problem to the STLport 00033 * forum or comment the following #error at your own risk. 00034 */ 00035 # error Incompatible native Std library. 00036 # endif /* std */ 00037 # define std STLPORT 00038 # endif /* _STLP_DONT_REDEFINE_STD */ 00039 00040 #endif 00041 00042 #undef _STLP_PROLOG_HEADER_INCLUDED /* defined in _prolog.h */
Generated on Mon Mar 10 15:32:21 2008 by ![]() |