1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/////////////////////////////////////////////////////////////
// //
// Copyright (c) 2003-2011 by The University of Queensland //
// Earth Systems Science Computational Centre (ESSCC) //
// http://www.uq.edu.au/esscc //
// //
// Primary Business: Brisbane, Queensland, Australia //
// Licensed under the Open Software License version 3.0 //
// http://www.opensource.org/licenses/osl-3.0.php //
// //
/////////////////////////////////////////////////////////////
#ifndef ESYS_LSMFUNCTIONAL_H
#define ESYS_LSMFUNCTIONAL_H
#if HAVE_CONFIG_H
#include "config.h"
#endif
#if HAVE_EXT_FUNCTIONAL
#include <ext/functional>
#endif
#if HAVE_FUNCTIONAL
#include <functional>
#endif
#if HAVE_STD__SELECT1ST_PAIR_
namespace ext {
template <class _Pair> struct select1st
: public std::select1st<_Pair> {};
}
#elif HAVE___GNU_CXX__SELECT1ST_PAIR_
namespace ext {
template <class _Pair> struct select1st
: public __gnu_cxx::select1st<_Pair> {};
}
#elif !HAVE_EXT__SELECT1ST_PAIR_
namespace ext
{
template <class _Pair>
struct select1st
: public std::unary_function<_Pair, typename _Pair::first_type>
{
typename _Pair::first_type&
operator()(_Pair& __x) const
{ return __x.first; }
const typename _Pair::first_type&
operator()(const _Pair& __x) const
{ return __x.first; }
};
}
#endif
#if HAVE_STD__SELECT2ND_PAIR_
namespace ext {
template <class _Pair> struct select2nd
: public std::select2nd<_Pair> {};
}
#elif HAVE___GNU_CXX__SELECT2ND_PAIR_
namespace ext {
template <class _Pair> struct select2nd
: public __gnu_cxx::select2nd<_Pair> {};
}
#elif !HAVE_EXT__SELECT2ND_PAIR_
namespace ext
{
template <class _Pair>
struct select2nd
: public std::unary_function<_Pair, typename _Pair::second_type>
{
typename _Pair::second_type&
operator()(_Pair& __x) const
{ return __x.second; }
const typename _Pair::second_type&
operator()(const _Pair& __x) const
{ return __x.second; }
};
}
#endif
#endif
|