vector.h revision 302408
175741Smsmith// Backward-compat support -*- C++ -*-
275741Smsmith
375741Smsmith// Copyright (C) 2001 Free Software Foundation, Inc.
475741Smsmith//
575741Smsmith// This file is part of the GNU ISO C++ Library.  This library is free
675741Smsmith// software; you can redistribute it and/or modify it under the
775741Smsmith// terms of the GNU General Public License as published by the
875741Smsmith// Free Software Foundation; either version 2, or (at your option)
975741Smsmith// any later version.
1075741Smsmith
1175741Smsmith// This library is distributed in the hope that it will be useful,
1275741Smsmith// but WITHOUT ANY WARRANTY; without even the implied warranty of
1375741Smsmith// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1475741Smsmith// GNU General Public License for more details.
1575741Smsmith
1675741Smsmith// You should have received a copy of the GNU General Public License along
1775741Smsmith// with this library; see the file COPYING.  If not, write to the Free
1875741Smsmith// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
1975741Smsmith// USA.
2075741Smsmith
2175741Smsmith// As a special exception, you may use this file as part of a free software
2275741Smsmith// library without restriction.  Specifically, if other files instantiate
2375741Smsmith// templates or use macros or inline functions from this file, or you compile
2475741Smsmith// this file and link it with other files to produce an executable, this
2575741Smsmith// file does not by itself cause the resulting executable to be covered by
2675741Smsmith// the GNU General Public License.  This exception does not however
2775741Smsmith// invalidate any other reasons why the executable file might be covered by
2875741Smsmith// the GNU General Public License.
2975741Smsmith
3075851Sru/*
3175741Smsmith *
3275741Smsmith * Copyright (c) 1994
3375741Smsmith * Hewlett-Packard Company
3475741Smsmith *
3575741Smsmith * Permission to use, copy, modify, distribute and sell this software
3675741Smsmith * and its documentation for any purpose is hereby granted without fee,
3775741Smsmith * provided that the above copyright notice appear in all copies and
3875741Smsmith * that both that copyright notice and this permission notice appear
3975741Smsmith * in supporting documentation.  Hewlett-Packard Company makes no
4075741Smsmith * representations about the suitability of this software for any
4175741Smsmith * purpose.  It is provided "as is" without express or implied warranty.
4275741Smsmith *
4375741Smsmith *
4475741Smsmith * Copyright (c) 1996
4575741Smsmith * Silicon Graphics Computer Systems, Inc.
4684306Sru *
4775741Smsmith * Permission to use, copy, modify, distribute and sell this software
4875741Smsmith * and its documentation for any purpose is hereby granted without fee,
4975741Smsmith * provided that the above copyright notice appear in all copies and
5075741Smsmith * that both that copyright notice and this permission notice appear
5175741Smsmith * in supporting documentation.  Silicon Graphics makes no
5275741Smsmith * representations about the suitability of this software for any
5375741Smsmith * purpose.  It is provided "as is" without express or implied warranty.
5475741Smsmith */
5575741Smsmith
5675741Smsmith#ifndef _BACKWARD_VECTOR_H
5775741Smsmith#define _BACKWARD_VECTOR_H 1
5875741Smsmith
5979754Sdd#include "backward_warning.h"
6075851Sru#include "algobase.h"
6175741Smsmith#include "alloc.h"
6275741Smsmith#include <vector>
6375741Smsmith
6475741Smsmithusing std::vector;
6575741Smsmith
66162385Sru#endif /* _BACKWARD_VECTOR_H */
6775741Smsmith