]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/phoenix/include/boost/phoenix/stl/algorithm/detail/std_hash_set_fwd.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / phoenix / include / boost / phoenix / stl / algorithm / detail / std_hash_set_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_set_fwd.hpp
12 //
13 /////////////////////////////////////////////////////////////////////////////
14
15 #ifndef BOOST_PHOENIX_STD_HASH_SET_FWD_EN_16_12_2004
16 #define BOOST_PHOENIX_STD_HASH_SET_FWD_EN_16_12_2004
17
18 #include <boost/phoenix/config.hpp>
19
20 #if defined(BOOST_HAS_HASH)
21
22 namespace BOOST_STD_EXTENSION_NAMESPACE
23 {
24 template<
25 class Kty
26 , class Hash
27 , class Cmp
28 , class Alloc
29 >
30 class hash_set;
31
32 template<
33 class Kty
34 , class Hash
35 , class Cmp
36 , class Alloc
37 >
38 class hash_multiset;
39 }
40
41 #elif defined(BOOST_DINKUMWARE_STDLIB)
42
43 namespace BOOST_STD_EXTENSION_NAMESPACE
44 {
45 template<
46 class Kty
47 , class Tr
48 , class Alloc
49 >
50 class hash_set;
51
52 template<
53 class Kty
54 , class Tr
55 , class Alloc
56 >
57 class hash_multiset;
58 }
59
60 #endif
61
62 #endif