xref: /dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/std/unordered_map (revision 81fc95a5293ee307c688a350a3feb4734aaddbb4)
1e4b17023SJohn Marino// <unordered_map> -*- C++ -*-
2e4b17023SJohn Marino
3*5ce9237cSJohn Marino// Copyright (C) 2007, 2008, 2009, 2010, 2013 Free Software Foundation, Inc.
4e4b17023SJohn Marino//
5e4b17023SJohn Marino// This file is part of the GNU ISO C++ Library.  This library is free
6e4b17023SJohn Marino// software; you can redistribute it and/or modify it under the
7e4b17023SJohn Marino// terms of the GNU General Public License as published by the
8e4b17023SJohn Marino// Free Software Foundation; either version 3, or (at your option)
9e4b17023SJohn Marino// any later version.
10e4b17023SJohn Marino
11e4b17023SJohn Marino// This library is distributed in the hope that it will be useful,
12e4b17023SJohn Marino// but WITHOUT ANY WARRANTY; without even the implied warranty of
13e4b17023SJohn Marino// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14e4b17023SJohn Marino// GNU General Public License for more details.
15e4b17023SJohn Marino
16e4b17023SJohn Marino// Under Section 7 of GPL version 3, you are granted additional
17e4b17023SJohn Marino// permissions described in the GCC Runtime Library Exception, version
18e4b17023SJohn Marino// 3.1, as published by the Free Software Foundation.
19e4b17023SJohn Marino
20e4b17023SJohn Marino// You should have received a copy of the GNU General Public License and
21e4b17023SJohn Marino// a copy of the GCC Runtime Library Exception along with this program;
22e4b17023SJohn Marino// see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
23e4b17023SJohn Marino// <http://www.gnu.org/licenses/>.
24e4b17023SJohn Marino
25e4b17023SJohn Marino/** @file include/unordered_map
26e4b17023SJohn Marino *  This is a Standard C++ Library header.
27e4b17023SJohn Marino */
28e4b17023SJohn Marino
29e4b17023SJohn Marino#ifndef _GLIBCXX_UNORDERED_MAP
30e4b17023SJohn Marino#define _GLIBCXX_UNORDERED_MAP 1
31e4b17023SJohn Marino
32e4b17023SJohn Marino#pragma GCC system_header
33e4b17023SJohn Marino
34e4b17023SJohn Marino#ifndef __GXX_EXPERIMENTAL_CXX0X__
35e4b17023SJohn Marino# include <bits/c++0x_warning.h>
36e4b17023SJohn Marino#else
37e4b17023SJohn Marino
38e4b17023SJohn Marino#include <utility>
39e4b17023SJohn Marino#include <type_traits>
40e4b17023SJohn Marino#include <initializer_list>
41e4b17023SJohn Marino#include <bits/stl_algobase.h>
42e4b17023SJohn Marino#include <bits/allocator.h>
43*5ce9237cSJohn Marino#include <bits/alloc_traits.h>
44e4b17023SJohn Marino#include <bits/stl_function.h> // equal_to, _Identity, _Select1st
45e4b17023SJohn Marino#include <bits/functional_hash.h>
46e4b17023SJohn Marino#include <bits/hashtable.h>
47e4b17023SJohn Marino#include <bits/unordered_map.h>
48e4b17023SJohn Marino#include <bits/range_access.h>
49e4b17023SJohn Marino
50e4b17023SJohn Marino#ifdef _GLIBCXX_DEBUG
51e4b17023SJohn Marino# include <debug/unordered_map>
52e4b17023SJohn Marino#endif
53e4b17023SJohn Marino
54e4b17023SJohn Marino#ifdef _GLIBCXX_PROFILE
55e4b17023SJohn Marino# include <profile/unordered_map>
56e4b17023SJohn Marino#endif
57e4b17023SJohn Marino
58e4b17023SJohn Marino#endif // __GXX_EXPERIMENTAL_CXX0X__
59e4b17023SJohn Marino
60e4b17023SJohn Marino#endif // _GLIBCXX_UNORDERED_MAP
61