std_set.h revision 296373
1178476Sjb// <set> -*- C++ -*-
2178476Sjb
3178476Sjb// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4178476Sjb//
5178476Sjb// This file is part of the GNU ISO C++ Library.  This library is free
6178476Sjb// software; you can redistribute it and/or modify it under the
7178476Sjb// terms of the GNU General Public License as published by the
8178476Sjb// Free Software Foundation; either version 2, or (at your option)
9178476Sjb// any later version.
10178476Sjb
11178476Sjb// This library is distributed in the hope that it will be useful,
12178476Sjb// but WITHOUT ANY WARRANTY; without even the implied warranty of
13178476Sjb// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14178476Sjb// GNU General Public License for more details.
15178476Sjb
16178476Sjb// You should have received a copy of the GNU General Public License along
17178476Sjb// with this library; see the file COPYING.  If not, write to the Free
18178476Sjb// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19178476Sjb// USA.
20178476Sjb
21178476Sjb// As a special exception, you may use this file as part of a free software
22178476Sjb// library without restriction.  Specifically, if other files instantiate
23178476Sjb// templates or use macros or inline functions from this file, or you compile
24178476Sjb// this file and link it with other files to produce an executable, this
25178476Sjb// file does not by itself cause the resulting executable to be covered by
26178476Sjb// the GNU General Public License.  This exception does not however
27178476Sjb// invalidate any other reasons why the executable file might be covered by
28178476Sjb// the GNU General Public License.
29178476Sjb
30178476Sjb/*
31178476Sjb *
32178476Sjb * Copyright (c) 1994
33178476Sjb * Hewlett-Packard Company
34178476Sjb *
35178476Sjb * Permission to use, copy, modify, distribute and sell this software
36178476Sjb * and its documentation for any purpose is hereby granted without fee,
37178476Sjb * provided that the above copyright notice appear in all copies and
38178476Sjb * that both that copyright notice and this permission notice appear
39178476Sjb * in supporting documentation.  Hewlett-Packard Company makes no
40178476Sjb * representations about the suitability of this software for any
41178476Sjb * purpose.  It is provided "as is" without express or implied warranty.
42178476Sjb *
43178476Sjb *
44178476Sjb * Copyright (c) 1996,1997
45178476Sjb * Silicon Graphics Computer Systems, Inc.
46178476Sjb *
47178476Sjb * Permission to use, copy, modify, distribute and sell this software
48178476Sjb * and its documentation for any purpose is hereby granted without fee,
49178476Sjb * provided that the above copyright notice appear in all copies and
50 * that both that copyright notice and this permission notice appear
51 * in supporting documentation.  Silicon Graphics makes no
52 * representations about the suitability of this software for any
53 * purpose.  It is provided "as is" without express or implied warranty.
54 */
55
56/** @file include/set
57 *  This is a Standard C++ Library header.
58 */
59
60#ifndef _GLIBCXX_SET
61#define _GLIBCXX_SET 1
62
63#pragma GCC system_header
64
65#include <bits/stl_tree.h>
66#include <bits/stl_set.h>
67#include <bits/stl_multiset.h>
68
69#ifdef _GLIBCXX_DEBUG
70# include <debug/set>
71#endif
72
73#endif /* _GLIBCXX_SET */
74