williamr@4: /*
williamr@4:  * Copyright (c) 1997
williamr@4:  * Silicon Graphics Computer Systems, Inc.
williamr@4:  *
williamr@4:  * Permission to use, copy, modify, distribute and sell this software
williamr@4:  * and its documentation for any purpose is hereby granted without fee,
williamr@4:  * provided that the above copyright notice appear in all copies and
williamr@4:  * that both that copyright notice and this permission notice appear
williamr@4:  * in supporting documentation.  Silicon Graphics makes no
williamr@4:  * representations about the suitability of this software for any
williamr@4:  * purpose.  It is provided "as is" without express or implied warranty.
williamr@4:  *
williamr@4:  */
williamr@4: 
williamr@4: #ifndef _STLP_SLIST
williamr@4: #define _STLP_SLIST
williamr@4: 
williamr@4: #ifndef _STLP_OUTERMOST_HEADER_ID
williamr@4: #  define _STLP_OUTERMOST_HEADER_ID 0x58
williamr@4: #  include <stl/_prolog.h>
williamr@4: #endif
williamr@4: 
williamr@4: #ifdef _STLP_PRAGMA_ONCE
williamr@4: #  pragma once
williamr@4: #endif
williamr@4: 
williamr@4: #if defined (_STLP_NO_EXTENSIONS)
williamr@4: /* Comment following if you want to use the slist constainer even if you ask for
williamr@4:  * no extension.
williamr@4:  */
williamr@4: #  error The slist class is an STLport extension.
williamr@4: #endif
williamr@4: 
williamr@4: #ifndef _STLP_INTERNAL_SLIST_H
williamr@4: #  include <stl/_slist.h>
williamr@4: #endif
williamr@4: 
williamr@4: #if defined (_STLP_IMPORT_VENDOR_STD)
williamr@4: //This is not a Standard header, it might failed for most of
williamr@4: //the compilers so we comment it for the moment. Should be uncommented
williamr@4: //on a compiler basis.
williamr@4: //#  include _STLP_NATIVE_HEADER(slist)
williamr@4: #endif
williamr@4: 
williamr@4: #if (_STLP_OUTERMOST_HEADER_ID == 0x58)
williamr@4: #  include <stl/_epilog.h>
williamr@4: #  undef _STLP_OUTERMOST_HEADER_ID
williamr@4: #endif
williamr@4: 
williamr@4: #endif /* _STLP_SLIST */
williamr@4: 
williamr@4: // Local Variables:
williamr@4: // mode:C++
williamr@4: // End: