1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/tools/stlport/slist Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -0,0 +1,54 @@
1.4 +/*
1.5 + * Copyright (c) 1997
1.6 + * Silicon Graphics Computer Systems, Inc.
1.7 + *
1.8 + * Permission to use, copy, modify, distribute and sell this software
1.9 + * and its documentation for any purpose is hereby granted without fee,
1.10 + * provided that the above copyright notice appear in all copies and
1.11 + * that both that copyright notice and this permission notice appear
1.12 + * in supporting documentation. Silicon Graphics makes no
1.13 + * representations about the suitability of this software for any
1.14 + * purpose. It is provided "as is" without express or implied warranty.
1.15 + *
1.16 + */
1.17 +
1.18 +#ifndef _STLP_SLIST
1.19 +#define _STLP_SLIST
1.20 +
1.21 +#ifndef _STLP_OUTERMOST_HEADER_ID
1.22 +# define _STLP_OUTERMOST_HEADER_ID 0x58
1.23 +# include <stl/_prolog.h>
1.24 +#endif
1.25 +
1.26 +#ifdef _STLP_PRAGMA_ONCE
1.27 +# pragma once
1.28 +#endif
1.29 +
1.30 +#if defined (_STLP_NO_EXTENSIONS)
1.31 +/* Comment following if you want to use the slist constainer even if you ask for
1.32 + * no extension.
1.33 + */
1.34 +# error The slist class is an STLport extension.
1.35 +#endif
1.36 +
1.37 +#ifndef _STLP_INTERNAL_SLIST_H
1.38 +# include <stl/_slist.h>
1.39 +#endif
1.40 +
1.41 +#if defined (_STLP_IMPORT_VENDOR_STD)
1.42 +//This is not a Standard header, it might failed for most of
1.43 +//the compilers so we comment it for the moment. Should be uncommented
1.44 +//on a compiler basis.
1.45 +//# include _STLP_NATIVE_HEADER(slist)
1.46 +#endif
1.47 +
1.48 +#if (_STLP_OUTERMOST_HEADER_ID == 0x58)
1.49 +# include <stl/_epilog.h>
1.50 +# undef _STLP_OUTERMOST_HEADER_ID
1.51 +#endif
1.52 +
1.53 +#endif /* _STLP_SLIST */
1.54 +
1.55 +// Local Variables:
1.56 +// mode:C++
1.57 +// End: