vector.h revision 132720
11638Srgrimes// Backward-compat support -*- C++ -*-
21638Srgrimes
31638Srgrimes// Copyright (C) 2001 Free Software Foundation, Inc.
41638Srgrimes//
51638Srgrimes// This file is part of the GNU ISO C++ Library.  This library is free
61638Srgrimes// software; you can redistribute it and/or modify it under the
71638Srgrimes// terms of the GNU General Public License as published by the
81638Srgrimes// Free Software Foundation; either version 2, or (at your option)
91638Srgrimes// any later version.
101638Srgrimes
111638Srgrimes// This library is distributed in the hope that it will be useful,
121638Srgrimes// but WITHOUT ANY WARRANTY; without even the implied warranty of
131638Srgrimes// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
141638Srgrimes// GNU General Public License for more details.
151638Srgrimes
161638Srgrimes// You should have received a copy of the GNU General Public License along
171638Srgrimes// with this library; see the file COPYING.  If not, write to the Free
181638Srgrimes// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
191638Srgrimes// USA.
201638Srgrimes
211638Srgrimes// As a special exception, you may use this file as part of a free software
221638Srgrimes// library without restriction.  Specifically, if other files instantiate
231638Srgrimes// templates or use macros or inline functions from this file, or you compile
241638Srgrimes// this file and link it with other files to produce an executable, this
251638Srgrimes// file does not by itself cause the resulting executable to be covered by
261638Srgrimes// the GNU General Public License.  This exception does not however
271638Srgrimes// invalidate any other reasons why the executable file might be covered by
281638Srgrimes// the GNU General Public License.
291638Srgrimes
301638Srgrimes/*
311638Srgrimes *
321638Srgrimes * Copyright (c) 1994
331638Srgrimes * Hewlett-Packard Company
341638Srgrimes *
351638Srgrimes * Permission to use, copy, modify, distribute and sell this software
361638Srgrimes * and its documentation for any purpose is hereby granted without fee,
371638Srgrimes * provided that the above copyright notice appear in all copies and
381638Srgrimes * that both that copyright notice and this permission notice appear
391638Srgrimes * in supporting documentation.  Hewlett-Packard Company makes no
401638Srgrimes * representations about the suitability of this software for any
411638Srgrimes * purpose.  It is provided "as is" without express or implied warranty.
421638Srgrimes *
431638Srgrimes *
441638Srgrimes * Copyright (c) 1996
451638Srgrimes * Silicon Graphics Computer Systems, Inc.
461638Srgrimes *
471638Srgrimes * Permission to use, copy, modify, distribute and sell this software
481638Srgrimes * and its documentation for any purpose is hereby granted without fee,
491638Srgrimes * provided that the above copyright notice appear in all copies and
501638Srgrimes * that both that copyright notice and this permission notice appear
511638Srgrimes * in supporting documentation.  Silicon Graphics makes no
521638Srgrimes * representations about the suitability of this software for any
531638Srgrimes * purpose.  It is provided "as is" without express or implied warranty.
541638Srgrimes */
551638Srgrimes
561638Srgrimes#ifndef _BACKWARD_VECTOR_H
571638Srgrimes#define _BACKWARD_VECTOR_H 1
581638Srgrimes
591638Srgrimes#include "backward_warning.h"
601638Srgrimes#include "algobase.h"
611638Srgrimes#include "alloc.h"
621638Srgrimes#include <vector>
631638Srgrimes
641638Srgrimesusing std::vector;
651638Srgrimes
661638Srgrimes#endif /* _BACKWARD_VECTOR_H */
671638Srgrimes
681638Srgrimes// Local Variables:
691638Srgrimes// mode:C++
701638Srgrimes// End:
711638Srgrimes