165692Sroger// <list> -*- C++ -*-
265692Sroger
365692Sroger// Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
465692Sroger//
565692Sroger// This file is part of the GNU ISO C++ Library.  This library is free
665692Sroger// software; you can redistribute it and/or modify it under the
765692Sroger// terms of the GNU General Public License as published by the
865692Sroger// Free Software Foundation; either version 2, or (at your option)
965692Sroger// any later version.
1065692Sroger
1165692Sroger// This library is distributed in the hope that it will be useful,
1265692Sroger// but WITHOUT ANY WARRANTY; without even the implied warranty of
1365692Sroger// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1465692Sroger// GNU General Public License for more details.
1565692Sroger
1665692Sroger// You should have received a copy of the GNU General Public License along
1765692Sroger// with this library; see the file COPYING.  If not, write to the Free
1865692Sroger// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
1965692Sroger// USA.
2065692Sroger
2165692Sroger// As a special exception, you may use this file as part of a free software
2265692Sroger// library without restriction.  Specifically, if other files instantiate
2365692Sroger// templates or use macros or inline functions from this file, or you compile
2465692Sroger// this file and link it with other files to produce an executable, this
2565692Sroger// file does not by itself cause the resulting executable to be covered by
2665692Sroger// the GNU General Public License.  This exception does not however
2765692Sroger// invalidate any other reasons why the executable file might be covered by
2865692Sroger// the GNU General Public License.
2965692Sroger
3065692Sroger/*
3165692Sroger *
3265692Sroger * Copyright (c) 1994
3365692Sroger * Hewlett-Packard Company
3465692Sroger *
3565692Sroger * Permission to use, copy, modify, distribute and sell this software
3665692Sroger * and its documentation for any purpose is hereby granted without fee,
3765692Sroger * provided that the above copyright notice appear in all copies and
3865692Sroger * that both that copyright notice and this permission notice appear
3965692Sroger * in supporting documentation.  Hewlett-Packard Company makes no
4065692Sroger * representations about the suitability of this software for any
4165692Sroger * purpose.  It is provided "as is" without express or implied warranty.
4265692Sroger *
4365692Sroger *
4465692Sroger * Copyright (c) 1996,1997
4565692Sroger * Silicon Graphics Computer Systems, Inc.
4665692Sroger *
4765692Sroger * Permission to use, copy, modify, distribute and sell this software
4865692Sroger * and its documentation for any purpose is hereby granted without fee,
4965692Sroger * provided that the above copyright notice appear in all copies and
5065692Sroger * that both that copyright notice and this permission notice appear
5165692Sroger * in supporting documentation.  Silicon Graphics makes no
5265692Sroger * representations about the suitability of this software for any
5365692Sroger * purpose.  It is provided "as is" without express or implied warranty.
5465692Sroger */
5565692Sroger
5665692Sroger/** @file include/list
5765692Sroger *  This is a Standard C++ Library header.
5865692Sroger */
5965692Sroger
6065692Sroger#ifndef _GLIBCXX_LIST
6165692Sroger#define _GLIBCXX_LIST 1
6265692Sroger
6365692Sroger#pragma GCC system_header
6465692Sroger
6565692Sroger#include <bits/functexcept.h>
6665692Sroger#include <bits/stl_algobase.h>
6765692Sroger#include <bits/allocator.h>
6865692Sroger#include <bits/stl_construct.h>
6965692Sroger#include <bits/stl_uninitialized.h>
7065692Sroger#include <bits/stl_list.h>
7165692Sroger
7265692Sroger#ifndef _GLIBCXX_EXPORT_TEMPLATE
7365692Sroger# include <bits/list.tcc>
7465692Sroger#endif
7565692Sroger
7665692Sroger#ifdef _GLIBCXX_DEBUG
7765692Sroger# include <debug/list>
7865692Sroger#endif
7965692Sroger
8065692Sroger#endif /* _GLIBCXX_LIST */
8165692Sroger
8265692Sroger