xref: /aoo42x/main/stlport/systemstl/hash_set (revision dee715a7)
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_HASHSET
23cdf0e10cSrcweir#define SYSTEM_STL_HASHSET
24cdf0e10cSrcweir
25*dee715a7SHerbert Dürr#ifdef HAVE_STL_INCLUDE_PATH
26*dee715a7SHerbert Dürr	// TODO: use computed include file name
27*dee715a7SHerbert Dürr	#include_next <unordered_set>
28*dee715a7SHerbert Dürr#elif defined(_MSC_VER)
29*dee715a7SHerbert Dürr	#include <../../VC/include/unordered_set>
30*dee715a7SHerbert Dürr	#define STLP4_EMUBASE_NS ::std::tr1
31*dee715a7SHerbert Dürr#else // fall back to boost/tr1
32*dee715a7SHerbert Dürr	#include <boost/tr1/tr1/unordered_set>
33*dee715a7SHerbert Dürr	#define STLP4_EMUBASE_NS ::boost
34*dee715a7SHerbert Dürr#endif
35cdf0e10cSrcweir
36cdf0e10cSrcweir
37*dee715a7SHerbert Dürr#ifndef NO_STLPORT4_EMULATION
38cdf0e10cSrcweir
39cdf0e10cSrcweirnamespace std
40cdf0e10cSrcweir{
41*dee715a7SHerbert Dürr#ifdef STLP4_EMUBASE_NS
42*dee715a7SHerbert Dürr	using STLP4_EMUBASE_NS::hash;
43*dee715a7SHerbert Dürr	using STLP4_EMUBASE_NS::unordered_set;
44*dee715a7SHerbert Dürr	using STLP4_EMUBASE_NS::unordered_multiset;
45*dee715a7SHerbert Dürr	#undef STLP4_EMUBASE_NS
46cdf0e10cSrcweir#endif
47cdf0e10cSrcweir
48*dee715a7SHerbert Dürr
49*dee715a7SHerbert Dürrtemplate<
50*dee715a7SHerbert Dürr	typename __K,
51*dee715a7SHerbert Dürr	typename __H = hash<__K>,
52*dee715a7SHerbert Dürr	typename __E = equal_to<__K>,
53*dee715a7SHerbert Dürr	typename __A = allocator<__K> >
54*dee715a7SHerbert Dürrclass hash_set
55*dee715a7SHerbert Dürr:	public unordered_set<__K,__H,__E,__A>
56*dee715a7SHerbert Dürr{
57*dee715a7SHerbert Dürr	typedef unordered_set<__K,__H,__E,__A> _super;
58*dee715a7SHerbert Dürrpublic:
59*dee715a7SHerbert Dürr	hash_set( void) {}
60*dee715a7SHerbert Dürr	hash_set( size_t n) : _super(n) {}
61*dee715a7SHerbert Dürr	void resize( size_t n) { _super::rehash( n); }
62*dee715a7SHerbert Dürr
63*dee715a7SHerbert Dürr#ifdef BOOST_TR1_UNORDERED_SET_INCLUDED // workaround pre-BOOST_UNORDERED_USE_MOVE problem
64*dee715a7SHerbert Dürr	// in derived classes the copy assignment operator can only be declared implicitly if
65*dee715a7SHerbert Dürr	// its base class's assignment operator has the canonical signature.
66*dee715a7SHerbert Dürr	// boost's assignment operators don't have this canonical signature when move-semantics are enabled
67*dee715a7SHerbert Dürr	hash_set& operator=( const hash_set& r) { hash_set c(r); this->swap(c); return *this; }
68cdf0e10cSrcweir#endif
69*dee715a7SHerbert Dürr
70*dee715a7SHerbert Dürrprivate:
71*dee715a7SHerbert Dürr	// setting the hasher dynamically is not supported in the emulation!
72*dee715a7SHerbert Dürr	hash_set( size_t, const __H&, const __E& rE=__E(), const __A& rA=__A()); // not implemented
73*dee715a7SHerbert Dürr};
74*dee715a7SHerbert Dürr
75*dee715a7SHerbert Dürrtemplate<
76*dee715a7SHerbert Dürr	typename __K,
77*dee715a7SHerbert Dürr	typename __H = hash<__K>,
78*dee715a7SHerbert Dürr	typename __E = equal_to<__K>,
79*dee715a7SHerbert Dürr	typename __A = allocator<__K> >
80*dee715a7SHerbert Dürrclass hash_multiset
81*dee715a7SHerbert Dürr:	public unordered_multiset<__K,__H,__E,__A>
82*dee715a7SHerbert Dürr{
83*dee715a7SHerbert Dürr	typedef unordered_multiset<__K,__H,__E,__A> _super;
84*dee715a7SHerbert Dürrpublic:
85*dee715a7SHerbert Dürr	hash_multiset( void) {}
86*dee715a7SHerbert Dürr	hash_multiset( size_t n) : _super( n) {}
87*dee715a7SHerbert Dürr	void resize( size_t n) { _super::rehash( n); }
88*dee715a7SHerbert Dürr
89*dee715a7SHerbert Dürr#ifdef BOOST_TR1_UNORDERED_SET_INCLUDED // workaround pre-BOOST_UNORDERED_USE_MOVE problem
90*dee715a7SHerbert Dürr	// in derived classes the copy assignment operator can only be declared implicitly if
91*dee715a7SHerbert Dürr	// its base class's assignment operator has the canonical signature.
92*dee715a7SHerbert Dürr	// boost's assignment operators don't have this canonical signature when move-semantics are enabled
93*dee715a7SHerbert Dürr	hash_multiset& operator=( const hash_multiset& r) { hash_multiset c(r); this->swap(c); return *this; }
94*dee715a7SHerbert Dürr#endif
95*dee715a7SHerbert Dürr
96*dee715a7SHerbert Dürrprivate:
97*dee715a7SHerbert Dürr	// setting the hasher dynamically is not supported in the emulation!
98*dee715a7SHerbert Dürr	hash_multiset( size_t, const __H&, const __E& rE=__E(), const __A& rA=__A()); // not implemented
99*dee715a7SHerbert Dürr};
100*dee715a7SHerbert Dürr
101*dee715a7SHerbert Dürr} // namespace std
102*dee715a7SHerbert Dürr
103*dee715a7SHerbert Dürr#endif // NO_STLPORT4_EMULATION
104*dee715a7SHerbert Dürr
105*dee715a7SHerbert Dürr#endif
106*dee715a7SHerbert Dürr
107