xref: /aoo41x/main/stlport/systemstl/functional (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_FUNCTIONAL
23cdf0e10cSrcweir#define SYSTEM_STL_FUNCTIONAL
24cdf0e10cSrcweir
25*dee715a7SHerbert Dürr#if defined(HAVE_STL_INCLUDE_PATH)
26*dee715a7SHerbert Dürr	// TODO: use computed include file name
27*dee715a7SHerbert Dürr	#include_next <functional>
28*dee715a7SHerbert Dürr#elif defined(_MSC_VER)
29*dee715a7SHerbert Dürr	#include <../../VC/include/functional>
30*dee715a7SHerbert Dürr	namespace std { using tr1::hash; }
31*dee715a7SHerbert Dürr#if 1 // TODO: enable only when std::_Swap_adl is not available
32*dee715a7SHerbert Dürr	// note: VS2008SP1 has known problems after a security update (KB971092,KB974479,KB974223)
33*dee715a7SHerbert Dürr	namespace std{ template<class _T> void _Swap_adl(_T& l, _T& r) {swap(l,r);} }
34*dee715a7SHerbert Dürr#endif
35*dee715a7SHerbert Dürr#else // fall back to boost/tr1
36*dee715a7SHerbert Dürr	#include <boost/tr1/tr1/functional>
37*dee715a7SHerbert Dürr	#include <boost/functional/hash.hpp>
38*dee715a7SHerbert Dürr#endif
39*dee715a7SHerbert Dürr
40*dee715a7SHerbert Dürr
41*dee715a7SHerbert Dürr#ifndef NO_STLPORT4_EMULATION
42cdf0e10cSrcweir
43cdf0e10cSrcweirnamespace std
44cdf0e10cSrcweir{
45*dee715a7SHerbert Dürr// emulate SGI extensions to the STL using http://www.sgi.com/tech/stl/stl_function.h as reference
46*dee715a7SHerbert Dürrtemplate< typename T> struct identity : unary_function<T,T> { T operator()(const T& t) const { return t;} };
47*dee715a7SHerbert Dürrtemplate< typename T, typename U> struct project2nd : public binary_function<T,U,U> { U operator()(const T&, const U& u) const { return u;}};
48*dee715a7SHerbert Dürrtemplate<typename P> struct select1st : public unary_function<P, typename P::first_type> { const typename P::first_type& operator()(const P& p) const { return p.first; }};
49*dee715a7SHerbert Dürrtemplate<typename P> struct select2nd : public unary_function<P, typename P::second_type> { const typename P::second_type& operator()(const P& p) const { return p.second; }};
50*dee715a7SHerbert Dürr
51*dee715a7SHerbert Dürr#if (defined(_MSC_VER) && (_MSC_VER >= 1600)) || defined(__GXX_EXPERIMENTAL_CXX0X__)
52*dee715a7SHerbert Dürrtemplate<typename T> inline T&& forward( typename identity<T>::type&& t) { return t; }
53*dee715a7SHerbert Dürr#endif // C++11 move semantics
54*dee715a7SHerbert Dürr
55*dee715a7SHerbert Dürrtemplate<typename Op1, typename Op2> class unary_compose : public unary_function<typename Op2::argument_type, typename Op1::result_type>
56*dee715a7SHerbert Dürr{
57*dee715a7SHerbert Dürrprotected:
58*dee715a7SHerbert Dürr	Op1 aOp1;
59*dee715a7SHerbert Dürr	Op2 aOp2;
60*dee715a7SHerbert Dürrpublic:
61*dee715a7SHerbert Dürr	unary_compose( const Op1& rOp1, const Op2& rOp2) : aOp1(rOp1), aOp2(rOp2) {}
62*dee715a7SHerbert Dürr	typename Op1::result_type operator()( const typename Op2::argument_type& x) const { return aOp1(aOp2(x)); }
63*dee715a7SHerbert Dürr};
64*dee715a7SHerbert Dürr
65*dee715a7SHerbert Dürrtemplate<typename Op1, typename Op2> inline unary_compose<Op1,Op2> compose1( const Op1& rOp1, const Op2& rOp2) { return unary_compose<Op1,Op2>(rOp1, rOp2); }
66*dee715a7SHerbert Dürr
67*dee715a7SHerbert Dürr} // namespace std
68*dee715a7SHerbert Dürr
69*dee715a7SHerbert Dürr#endif // NO_STLPORT4_EMULATION
70cdf0e10cSrcweir
71cdf0e10cSrcweir#endif
72*dee715a7SHerbert Dürr
73