Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __INTERPKERNELSTLEXT_HXX__
00021 #define __INTERPKERNELSTLEXT_HXX__
00022
00023 #include <functional>
00024
00025 namespace INTERP_KERNEL
00026 {
00027 namespace STLEXT
00028 {
00029 template<typename _Pair>
00030 struct Select1st : public std::unary_function<_Pair, typename _Pair::first_type>
00031 {
00032 typename _Pair::first_type& operator()(_Pair& __x) const { return __x.first; }
00033 const typename _Pair::first_type&operator()(const _Pair& __x) const { return __x.first; }
00034 };
00035
00036 template<typename _T1, typename _T2>
00037 inline void Construct(_T1* __p, const _T2& __value__) { ::new(static_cast<void*>(__p)) _T1(__value__); }
00038
00039 template<typename _Tp> inline void Destroy(_Tp* __pointer) { __pointer->~_Tp(); }
00040 }
00041 }
00042
00043 #endif