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 26*03841fbaSAndre Fischer // TODO: use computed include file name 27*03841fbaSAndre Fischer #include_next <unordered_map> 28a718d426SHerbert Dürr#elif defined(__cplusplus) && (__cplusplus >= 201103L) 29*03841fbaSAndre Fischer #include <unordered_map> 30dee715a7SHerbert Dürr#elif defined(_MSC_VER) 31*03841fbaSAndre Fischer #pragma warning(push) 32*03841fbaSAndre Fischer #pragma warning(disable:4555) 33*03841fbaSAndre Fischer #include <../../VC/include/unordered_map> 34*03841fbaSAndre Fischer #pragma warning(pop) 35*03841fbaSAndre Fischer #define STLP4_EMUBASE_NS ::std::tr1 36dee715a7SHerbert Dürr#else // fall back to boost/tr1 37*03841fbaSAndre Fischer #include <boost/tr1/tr1/unordered_map> 38*03841fbaSAndre 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>, 58dee715a7SHerbert Dürr typename __E = equal_to<__K>, 59dee715a7SHerbert Dürr typename __A = allocator<pair<__K,__T> > > 60dee715a7SHerbert Dürrclass hash_map 61dee715a7SHerbert Dürr: public unordered_map<__K,__T,__H,__E,__A> 62dee715a7SHerbert Dürr{ 63dee715a7SHerbert Dürrpublic: 64dee715a7SHerbert Dürr typedef unordered_map<__K,__T,__H,__E,__A> _super; 65dee715a7SHerbert Dürr typedef __T data_type; 66dee715a7SHerbert Dürr 67dee715a7SHerbert Dürr hash_map( void) {} 68dee715a7SHerbert Dürr hash_map( size_t n) : _super( n) {} 69dee715a7SHerbert Dürr 70dee715a7SHerbert Dürrprivate: 71dee715a7SHerbert Dürr // setting the hasher dynamically is not supported in the emulation! 72dee715a7SHerbert Dürr hash_map( size_t, const __H&, const __E& rE=__E(), const __A& rA=__A()); // not implemented 73dee715a7SHerbert Dürr}; 74dee715a7SHerbert Dürr 75dee715a7SHerbert Dürrtemplate< 76dee715a7SHerbert Dürr typename __K, 77dee715a7SHerbert Dürr typename __T, 78dee715a7SHerbert Dürr typename __H = hash<__K>, 79dee715a7SHerbert Dürr typename __E = equal_to<__K>, 80dee715a7SHerbert Dürr typename __A = allocator<pair<__K,__T> > > 81dee715a7SHerbert Dürrclass hash_multimap 82dee715a7SHerbert Dürr: public unordered_multimap<__K,__T,__H,__E,__A> 83cdf0e10cSrcweir{ 84dee715a7SHerbert Dürrpublic: 85dee715a7SHerbert Dürr typedef unordered_multimap<__K,__T,__H,__E,__A> _super; 86dee715a7SHerbert Dürr typedef __T data_type; 87dee715a7SHerbert Dürr 88dee715a7SHerbert Dürr hash_multimap( void) {} 89dee715a7SHerbert Dürr hash_multimap( size_t n) : _super( n) {} 90dee715a7SHerbert Dürr 91dee715a7SHerbert Dürrprivate: 92dee715a7SHerbert Dürr // setting the hasher dynamically is not supported in the emulation! 93dee715a7SHerbert Dürr hash_multimap( size_t, const __H&, const __E& rE=__E(), const __A& rA=__A()); // not implemented 94dee715a7SHerbert Dürr}; 95dee715a7SHerbert Dürr 96dee715a7SHerbert Dürr} // namespace std 97dee715a7SHerbert Dürr 98dee715a7SHerbert Dürr#endif // NO_STLPORT4_EMULATION 99cdf0e10cSrcweir 100cdf0e10cSrcweir#endif 101dee715a7SHerbert Dürr 102