vector.h revision 169692
1133920Sandre// Backward-compat support -*- C++ -*-
2133920Sandre
3133920Sandre// Copyright (C) 2001 Free Software Foundation, Inc.
4133920Sandre//
5133920Sandre// This file is part of the GNU ISO C++ Library.  This library is free
6133920Sandre// software; you can redistribute it and/or modify it under the
7133920Sandre// terms of the GNU General Public License as published by the
8133920Sandre// Free Software Foundation; either version 2, or (at your option)
9133920Sandre// any later version.
10133920Sandre
11133920Sandre// This library is distributed in the hope that it will be useful,
12133920Sandre// but WITHOUT ANY WARRANTY; without even the implied warranty of
13133920Sandre// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14133920Sandre// GNU General Public License for more details.
15133920Sandre
16133920Sandre// You should have received a copy of the GNU General Public License along
17133920Sandre// with this library; see the file COPYING.  If not, write to the Free
18133920Sandre// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19133920Sandre// USA.
20133920Sandre
21133920Sandre// As a special exception, you may use this file as part of a free software
22133920Sandre// library without restriction.  Specifically, if other files instantiate
23133920Sandre// templates or use macros or inline functions from this file, or you compile
24133920Sandre// this file and link it with other files to produce an executable, this
25133920Sandre// file does not by itself cause the resulting executable to be covered by
26133920Sandre// the GNU General Public License.  This exception does not however
27133920Sandre// invalidate any other reasons why the executable file might be covered by
28133920Sandre// the GNU General Public License.
29134346Sru
30133920Sandre/*
31133920Sandre *
32133920Sandre * Copyright (c) 1994
33133920Sandre * Hewlett-Packard Company
34133920Sandre *
35133920Sandre * Permission to use, copy, modify, distribute and sell this software
36134383Sandre * and its documentation for any purpose is hereby granted without fee,
37133920Sandre * provided that the above copyright notice appear in all copies and
38133920Sandre * that both that copyright notice and this permission notice appear
39133920Sandre * in supporting documentation.  Hewlett-Packard Company makes no
40133920Sandre * representations about the suitability of this software for any
41133920Sandre * purpose.  It is provided "as is" without express or implied warranty.
42133920Sandre *
43133920Sandre *
44133920Sandre * Copyright (c) 1996
45133920Sandre * Silicon Graphics Computer Systems, Inc.
46133920Sandre *
47133920Sandre * Permission to use, copy, modify, distribute and sell this software
48133920Sandre * and its documentation for any purpose is hereby granted without fee,
49133920Sandre * provided that the above copyright notice appear in all copies and
50133920Sandre * that both that copyright notice and this permission notice appear
51133920Sandre * in supporting documentation.  Silicon Graphics makes no
52133920Sandre * representations about the suitability of this software for any
53133920Sandre * purpose.  It is provided "as is" without express or implied warranty.
54133920Sandre */
55133920Sandre
56133920Sandre#ifndef _BACKWARD_VECTOR_H
57133920Sandre#define _BACKWARD_VECTOR_H 1
58133920Sandre
59133920Sandre#include "backward_warning.h"
60133920Sandre#include "algobase.h"
61133920Sandre#include "alloc.h"
62133920Sandre#include <vector>
63133920Sandre
64133920Sandreusing std::vector;
65133920Sandre
66133920Sandre#endif /* _BACKWARD_VECTOR_H */
67133920Sandre