/src/resiprocate/rutil/HashMap.hxx
Line | Count | Source |
1 | | #if !defined(RESIP_HASHMAP_HXX) |
2 | | #define RESIP_HASHMAP_HXX |
3 | | |
4 | | /** |
5 | | @file |
6 | | @brief Wraps your platform's implementation of hash_map, hash_multimap, |
7 | | and hash_set. |
8 | | |
9 | | @ingroup data_structures |
10 | | */ |
11 | | |
12 | | #include <unordered_map> |
13 | | #include <unordered_set> |
14 | 2 | #define HashMap std::unordered_map |
15 | | #define HashSet std::unordered_set |
16 | | #define HashMultiMap std::unordered_multimap |
17 | | |
18 | | #define HashValue(type) \ |
19 | | template <> \ |
20 | | struct std::hash<type> \ |
21 | | { \ |
22 | | size_t operator()(const type& data) const; \ |
23 | | }; |
24 | 130k | #define HashValueImp(type, ret) size_t std::hash<type>::operator()(const type& data) const { return ret; } std::__1::hash<resip::Mime>::operator()(resip::Mime const&) const Line | Count | Source | 24 | 74 | #define HashValueImp(type, ret) size_t std::hash<type>::operator()(const type& data) const { return ret; } |
Unexecuted instantiation: std::__1::hash<resip::Tuple>::operator()(resip::Tuple const&) const Unexecuted instantiation: std::__1::hash<resip::Uri>::operator()(resip::Uri const&) const std::__1::hash<resip::Data>::operator()(resip::Data const&) const Line | Count | Source | 24 | 130k | #define HashValueImp(type, ret) size_t std::hash<type>::operator()(const type& data) const { return ret; } |
|
25 | | |
26 | | #endif |
27 | | |
28 | | /* ==================================================================== |
29 | | * The Vovida Software License, Version 1.0 |
30 | | * |
31 | | * Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
32 | | * |
33 | | * Redistribution and use in source and binary forms, with or without |
34 | | * modification, are permitted provided that the following conditions |
35 | | * are met: |
36 | | * |
37 | | * 1. Redistributions of source code must retain the above copyright |
38 | | * notice, this list of conditions and the following disclaimer. |
39 | | * |
40 | | * 2. Redistributions in binary form must reproduce the above copyright |
41 | | * notice, this list of conditions and the following disclaimer in |
42 | | * the documentation and/or other materials provided with the |
43 | | * distribution. |
44 | | * |
45 | | * 3. The names "VOCAL", "Vovida Open Communication Application Library", |
46 | | * and "Vovida Open Communication Application Library (VOCAL)" must |
47 | | * not be used to endorse or promote products derived from this |
48 | | * software without prior written permission. For written |
49 | | * permission, please contact vocal@vovida.org. |
50 | | * |
51 | | * 4. Products derived from this software may not be called "VOCAL", nor |
52 | | * may "VOCAL" appear in their name, without prior written |
53 | | * permission of Vovida Networks, Inc. |
54 | | * |
55 | | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
56 | | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
57 | | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
58 | | * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
59 | | * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
60 | | * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
61 | | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
62 | | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
63 | | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
64 | | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
65 | | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
66 | | * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
67 | | * DAMAGE. |
68 | | * |
69 | | * ==================================================================== |
70 | | * |
71 | | * This software consists of voluntary contributions made by Vovida |
72 | | * Networks, Inc. and many individuals on behalf of Vovida Networks, |
73 | | * Inc. For more information on Vovida Networks, Inc., please see |
74 | | * <http://www.vovida.org/>. |
75 | | * |
76 | | */ |