1e76eebc6SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3e76eebc6SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4e76eebc6SAndrew Rist * or more contributor license agreements. See the NOTICE file 5e76eebc6SAndrew Rist * distributed with this work for additional information 6e76eebc6SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7e76eebc6SAndrew Rist * to you under the Apache License, Version 2.0 (the 8e76eebc6SAndrew Rist * "License"); you may not use this file except in compliance 9e76eebc6SAndrew Rist * with the License. You may obtain a copy of the License at 10e76eebc6SAndrew Rist * 11e76eebc6SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12e76eebc6SAndrew Rist * 13e76eebc6SAndrew Rist * Unless required by applicable law or agreed to in writing, 14e76eebc6SAndrew Rist * software distributed under the License is distributed on an 15e76eebc6SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16e76eebc6SAndrew Rist * KIND, either express or implied. See the License for the 17e76eebc6SAndrew Rist * specific language governing permissions and limitations 18e76eebc6SAndrew Rist * under the License. 19e76eebc6SAndrew Rist * 20e76eebc6SAndrew Rist *************************************************************/ 21cdf0e10cSrcweir 22cdf0e10cSrcweir#ifndef SYSTEM_STL_HASHMAP 23cdf0e10cSrcweir#define SYSTEM_STL_HASHMAP 24cdf0e10cSrcweir 25dee715a7SHerbert Dürr#ifdef HAVE_STL_INCLUDE_PATH 2603841fbaSAndre Fischer // TODO: use computed include file name 2703841fbaSAndre Fischer #include_next <unordered_map> 28a718d426SHerbert Dürr#elif defined(__cplusplus) && (__cplusplus >= 201103L) 2903841fbaSAndre Fischer #include <unordered_map> 30dee715a7SHerbert Dürr#elif defined(_MSC_VER) 3103841fbaSAndre Fischer #pragma warning(push) 3203841fbaSAndre Fischer #pragma warning(disable:4555) 3303841fbaSAndre Fischer #include <../../VC/include/unordered_map> 3403841fbaSAndre Fischer #pragma warning(pop) 3503841fbaSAndre Fischer #define STLP4_EMUBASE_NS ::std::tr1 36dee715a7SHerbert Dürr#else // fall back to boost/tr1 3703841fbaSAndre Fischer #include <boost/tr1/tr1/unordered_map> 3803841fbaSAndre Fischer #define STLP4_EMUBASE_NS ::boost 39dee715a7SHerbert Dürr#endif 40cdf0e10cSrcweir 41cdf0e10cSrcweir 42dee715a7SHerbert Dürr#ifndef NO_STLPORT4_EMULATION 43cdf0e10cSrcweir 44dee715a7SHerbert Dürrnamespace std 45cdf0e10cSrcweir{ 46dee715a7SHerbert Dürr#ifdef STLP4_EMUBASE_NS 47dee715a7SHerbert Dürr using STLP4_EMUBASE_NS::hash; 48dee715a7SHerbert Dürr using STLP4_EMUBASE_NS::unordered_map; 49dee715a7SHerbert Dürr using STLP4_EMUBASE_NS::unordered_multimap; 50dee715a7SHerbert Dürr #undef STLP4_EMUBASE_NS 51dee715a7SHerbert Dürr#endif 52cdf0e10cSrcweir 53dee715a7SHerbert Dürr 54dee715a7SHerbert Dürrtemplate< 55dee715a7SHerbert Dürr typename __K, 56dee715a7SHerbert Dürr typename __T, 57dee715a7SHerbert Dürr typename __H = hash<__K>, 58*ae5c9b6cSHerbert Dürr typename __E = equal_to<__K> > 59dee715a7SHerbert Dürrclass hash_map 60*ae5c9b6cSHerbert Dürr: public unordered_map<__K,__T,__H,__E> 61dee715a7SHerbert Dürr{ 62dee715a7SHerbert Dürrpublic: 63*ae5c9b6cSHerbert Dürr typedef unordered_map<__K,__T,__H,__E> _super; 64dee715a7SHerbert Dürr 65dee715a7SHerbert Dürr hash_map( void) {} 66dee715a7SHerbert Dürr hash_map( size_t n) : _super( n) {} 67dee715a7SHerbert Dürr 68dee715a7SHerbert Dürrprivate: 69dee715a7SHerbert Dürr // setting the hasher dynamically is not supported in the emulation! 70*ae5c9b6cSHerbert Dürr hash_map( size_t, const __H&, const __E& rE=__E()); // not implemented 71dee715a7SHerbert Dürr}; 72dee715a7SHerbert Dürr 73dee715a7SHerbert Dürrtemplate< 74dee715a7SHerbert Dürr typename __K, 75dee715a7SHerbert Dürr typename __T, 76dee715a7SHerbert Dürr typename __H = hash<__K>, 77*ae5c9b6cSHerbert Dürr typename __E = equal_to<__K> > 78dee715a7SHerbert Dürrclass hash_multimap 79*ae5c9b6cSHerbert Dürr: public unordered_multimap<__K,__T,__H,__E> 80cdf0e10cSrcweir{ 81dee715a7SHerbert Dürrpublic: 82*ae5c9b6cSHerbert Dürr typedef unordered_multimap<__K,__T,__H,__E> _super; 83dee715a7SHerbert Dürr 84dee715a7SHerbert Dürr hash_multimap( void) {} 85dee715a7SHerbert Dürr hash_multimap( size_t n) : _super( n) {} 86dee715a7SHerbert Dürr 87dee715a7SHerbert Dürrprivate: 88dee715a7SHerbert Dürr // setting the hasher dynamically is not supported in the emulation! 89*ae5c9b6cSHerbert Dürr hash_multimap( size_t, const __H&, const __E& rE=__E()); // not implemented 90dee715a7SHerbert Dürr}; 91dee715a7SHerbert Dürr 92dee715a7SHerbert Dürr} // namespace std 93dee715a7SHerbert Dürr 94dee715a7SHerbert Dürr#endif // NO_STLPORT4_EMULATION 95cdf0e10cSrcweir 96cdf0e10cSrcweir#endif 97dee715a7SHerbert Dürr 98