set.h revision 169691
1234353Sdim// Backward-compat support -*- C++ -*-
2198090Srdivacky
3193323Sed// Copyright (C) 2001 Free Software Foundation, Inc.
4193323Sed//
5193323Sed// This file is part of the GNU ISO C++ Library.  This library is free
6193323Sed// software; you can redistribute it and/or modify it under the
7198090Srdivacky// terms of the GNU General Public License as published by the
8193323Sed// Free Software Foundation; either version 2, or (at your option)
9193323Sed// any later version.
10193323Sed
11193323Sed// This library is distributed in the hope that it will be useful,
12193323Sed// but WITHOUT ANY WARRANTY; without even the implied warranty of
13193323Sed// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14193323Sed// GNU General Public License for more details.
15193323Sed
16234353Sdim// You should have received a copy of the GNU General Public License along
17234353Sdim// with this library; see the file COPYING.  If not, write to the Free
18234353Sdim// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19249423Sdim// USA.
20249423Sdim
21234353Sdim// As a special exception, you may use this file as part of a free software
22193323Sed// library without restriction.  Specifically, if other files instantiate
23234353Sdim// templates or use macros or inline functions from this file, or you compile
24234353Sdim// this file and link it with other files to produce an executable, this
25234353Sdim// file does not by itself cause the resulting executable to be covered by
26234353Sdim// the GNU General Public License.  This exception does not however
27234353Sdim// invalidate any other reasons why the executable file might be covered by
28234353Sdim// the GNU General Public License.
29234353Sdim
30234353Sdim/*
31234353Sdim *
32234353Sdim * Copyright (c) 1994
33234353Sdim * Hewlett-Packard Company
34234353Sdim *
35234353Sdim * Permission to use, copy, modify, distribute and sell this software
36234353Sdim * and its documentation for any purpose is hereby granted without fee,
37234353Sdim * provided that the above copyright notice appear in all copies and
38249423Sdim * that both that copyright notice and this permission notice appear
39234353Sdim * in supporting documentation.  Hewlett-Packard Company makes no
40234353Sdim * representations about the suitability of this software for any
41234353Sdim * purpose.  It is provided "as is" without express or implied warranty.
42234353Sdim *
43234353Sdim *
44234353Sdim * Copyright (c) 1996,1997
45234353Sdim * Silicon Graphics Computer Systems, Inc.
46249423Sdim *
47234353Sdim * Permission to use, copy, modify, distribute and sell this software
48234353Sdim * and its documentation for any purpose is hereby granted without fee,
49234353Sdim * provided that the above copyright notice appear in all copies and
50234353Sdim * that both that copyright notice and this permission notice appear
51234353Sdim * in supporting documentation.  Silicon Graphics makes no
52249423Sdim * representations about the suitability of this software for any
53234353Sdim * purpose.  It is provided "as is" without express or implied warranty.
54234353Sdim */
55234353Sdim
56234353Sdim#ifndef _BACKWARD_SET_H
57234353Sdim#define _BACKWARD_SET_H 1
58234353Sdim
59234353Sdim#include "backward_warning.h"
60249423Sdim#include "tree.h"
61234353Sdim#include <set>
62234353Sdim
63234353Sdimusing std::set;
64234353Sdim
65234353Sdim#endif /* _BACKWARD_SET_H */
66249423Sdim