list.h revision 169691
176259Sgreen// Backward-compat support -*- C++ -*-
276259Sgreen
376259Sgreen// Copyright (C) 2001 Free Software Foundation, Inc.
476259Sgreen//
576259Sgreen// This file is part of the GNU ISO C++ Library.  This library is free
676259Sgreen// software; you can redistribute it and/or modify it under the
776259Sgreen// terms of the GNU General Public License as published by the
876259Sgreen// Free Software Foundation; either version 2, or (at your option)
976259Sgreen// any later version.
1076259Sgreen
1176259Sgreen// This library is distributed in the hope that it will be useful,
1276259Sgreen// but WITHOUT ANY WARRANTY; without even the implied warranty of
1376259Sgreen// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1476259Sgreen// GNU General Public License for more details.
1576259Sgreen
1676259Sgreen// You should have received a copy of the GNU General Public License along
1776259Sgreen// with this library; see the file COPYING.  If not, write to the Free
1876259Sgreen// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
1976259Sgreen// USA.
2076259Sgreen
2176259Sgreen// As a special exception, you may use this file as part of a free software
2276259Sgreen// library without restriction.  Specifically, if other files instantiate
2376259Sgreen// templates or use macros or inline functions from this file, or you compile
2476259Sgreen// this file and link it with other files to produce an executable, this
2576259Sgreen// file does not by itself cause the resulting executable to be covered by
26126274Sdes// the GNU General Public License.  This exception does not however
2776259Sgreen// invalidate any other reasons why the executable file might be covered by
2876259Sgreen// the GNU General Public License.
2976259Sgreen
3076259Sgreen/*
3176259Sgreen *
3276259Sgreen * Copyright (c) 1994
3376259Sgreen * Hewlett-Packard Company
3476259Sgreen *
3576259Sgreen * Permission to use, copy, modify, distribute and sell this software
3676259Sgreen * and its documentation for any purpose is hereby granted without fee,
3776259Sgreen * provided that the above copyright notice appear in all copies and
3876259Sgreen * that both that copyright notice and this permission notice appear
3976259Sgreen * in supporting documentation.  Hewlett-Packard Company makes no
4076259Sgreen * representations about the suitability of this software for any
4176259Sgreen * purpose.  It is provided "as is" without express or implied warranty.
42126274Sdes *
43126274Sdes *
4476259Sgreen * Copyright (c) 1996,1997
4576259Sgreen * Silicon Graphics Computer Systems, Inc.
4692555Sdes *
4776259Sgreen * Permission to use, copy, modify, distribute and sell this software
48106121Sdes * and its documentation for any purpose is hereby granted without fee,
4992555Sdes * provided that the above copyright notice appear in all copies and
5076259Sgreen * that both that copyright notice and this permission notice appear
5176259Sgreen * in supporting documentation.  Silicon Graphics makes no
5276259Sgreen * representations about the suitability of this software for any
5376259Sgreen * purpose.  It is provided "as is" without express or implied warranty.
5476259Sgreen */
5576259Sgreen
5676259Sgreen#ifndef _BACKWARD_LIST_H
5776259Sgreen#define _BACKWARD_LIST_H 1
5892555Sdes
5976259Sgreen#include "backward_warning.h"
6076259Sgreen#include "algobase.h"
6192555Sdes#include "alloc.h"
6292555Sdes#include <list>
6376259Sgreen
6492555Sdesusing std::list;
6592555Sdes
6676259Sgreen#endif /* _BACKWARD_LIST_H */
6776259Sgreen