]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/phoenix/include/boost/phoenix/stl/algorithm/detail/std_hash_map_fwd.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / phoenix / include / boost / phoenix / stl / algorithm / detail / std_hash_map_fwd.hpp
1 // Copyright 2005 Daniel Wallin.
2 // Copyright 2005 Joel de Guzman.
3 //
4 // Use, modification and distribution is subject to the Boost Software
5 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 //
8 // Modeled after range_ex, Copyright 2004 Eric Niebler
9 ///////////////////////////////////////////////////////////////////////////////
10 //
11 // std_hash_map_fwd.hpp
12 //
13 /////////////////////////////////////////////////////////////////////////////
14
15 #if defined(_MSC_VER)
16 # pragma once
17 #endif
18
19 #ifndef BOOST_PHOENIX_STD_HASH_MAP_FWD_EN_16_12_2004
20 #define BOOST_PHOENIX_STD_HASH_MAP_FWD_EN_16_12_2004
21
22 #include <boost/phoenix/config.hpp>
23
24 #if defined(BOOST_HAS_HASH)
25
26 namespace BOOST_STD_EXTENSION_NAMESPACE
27 {
28 template<
29 class Kty
30 , class Ty
31 , class Hash
32 , class Cmp
33 , class Alloc
34 >
35 class hash_map;
36
37 template<
38 class Kty
39 , class Ty
40 , class Hash
41 , class Cmp
42 , class Alloc
43 >
44 class hash_multimap;
45 }
46
47 #elif defined(BOOST_DINKUMWARE_STDLIB)
48
49 namespace BOOST_STD_EXTENSION_NAMESPACE
50 {
51 template<
52 class Kty
53 , class Ty
54 , class Tr
55 , class Alloc
56 >
57 class hash_map;
58
59 template<
60 class Kty
61 , class Ty
62 , class Tr
63 , class Alloc
64 >
65 class hash_multimap;
66 }
67
68 #endif
69
70 #endif