1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/tools/stlport/stl/_prolog.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -0,0 +1,25 @@
1.4 +/* NOTE : this header has no guards and is MEANT for multiple inclusion!
1.5 + * If you are using "header protection" option with your compiler,
1.6 + * please also find #pragma which disables it and put it here, to
1.7 + * allow reentrancy of this header.
1.8 + */
1.9 +
1.10 +#ifdef std
1.11 +# undef std /* We undef "std" on entry , as STLport headers may include native ones. */
1.12 +#endif
1.13 +
1.14 +#ifdef _STLP_PROLOG_HEADER_INCLUDED
1.15 +# error STlport prolog header can not be reincluded as long as epilog has not be included.
1.16 +#endif
1.17 +
1.18 +#define _STLP_PROLOG_HEADER_INCLUDED
1.19 +
1.20 +#ifndef _STLP_FEATURES_H
1.21 +# include <stl/config/features.h>
1.22 +#endif
1.23 +
1.24 +/* If the platform provides any specific prolog actions,
1.25 + * like #pragmas, do include platform-specific prolog file */
1.26 +#if defined (_STLP_HAS_SPECIFIC_PROLOG_EPILOG)
1.27 +# include <stl/config/_prolog.h>
1.28 +#endif