os/ossrv/genericopenlibs/cppstdlib/stl/stlport/slist
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
 * Copyright (c) 1997
sl@0
     3
 * Silicon Graphics Computer Systems, Inc.
sl@0
     4
 *
sl@0
     5
 * Permission to use, copy, modify, distribute and sell this software
sl@0
     6
 * and its documentation for any purpose is hereby granted without fee,
sl@0
     7
 * provided that the above copyright notice appear in all copies and
sl@0
     8
 * that both that copyright notice and this permission notice appear
sl@0
     9
 * in supporting documentation.  Silicon Graphics makes no
sl@0
    10
 * representations about the suitability of this software for any
sl@0
    11
 * purpose.  It is provided "as is" without express or implied warranty.
sl@0
    12
 *
sl@0
    13
 */
sl@0
    14
sl@0
    15
#ifndef _STLP_SLIST
sl@0
    16
#define _STLP_SLIST
sl@0
    17
sl@0
    18
#ifndef _STLP_OUTERMOST_HEADER_ID
sl@0
    19
#  define _STLP_OUTERMOST_HEADER_ID 0x58
sl@0
    20
#  include <stl/_prolog.h>
sl@0
    21
#endif
sl@0
    22
sl@0
    23
#ifdef _STLP_PRAGMA_ONCE
sl@0
    24
#  pragma once
sl@0
    25
#endif
sl@0
    26
sl@0
    27
#if defined (_STLP_NO_EXTENSIONS)
sl@0
    28
/* Comment following if you want to use the slist constainer even if you ask for
sl@0
    29
 * no extension.
sl@0
    30
 */
sl@0
    31
#  error The slist class is an STLport extension.
sl@0
    32
#endif
sl@0
    33
sl@0
    34
#ifndef _STLP_INTERNAL_SLIST_H
sl@0
    35
#  include <stl/_slist.h>
sl@0
    36
#endif
sl@0
    37
sl@0
    38
#if defined (_STLP_IMPORT_VENDOR_STD)
sl@0
    39
//This is not a Standard header, it might failed for most of
sl@0
    40
//the compilers so we comment it for the moment. Should be uncommented
sl@0
    41
//on a compiler basis.
sl@0
    42
//#  include _STLP_NATIVE_HEADER(slist)
sl@0
    43
#endif
sl@0
    44
sl@0
    45
#if (_STLP_OUTERMOST_HEADER_ID == 0x58)
sl@0
    46
#  include <stl/_epilog.h>
sl@0
    47
#  undef _STLP_OUTERMOST_HEADER_ID
sl@0
    48
#endif
sl@0
    49
sl@0
    50
#endif /* _STLP_SLIST */
sl@0
    51
sl@0
    52
// Local Variables:
sl@0
    53
// mode:C++
sl@0
    54
// End: