decay.hpp
Go to the documentation of this file.
1 // (C) Copyright John Maddock & Thorsten Ottosen 2005.
2 // Use, modification and distribution are subject to the Boost Software License,
3 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt).
5 //
6 // See http://www.boost.org/libs/type_traits for most recent version including documentation.
7 
8 
9 #ifndef BOOST_TT_DECAY_HPP_INCLUDED
10 #define BOOST_TT_DECAY_HPP_INCLUDED
11 
18 
19 namespace boost
20 {
21 
22  namespace detail
23  {
24 
25  template <class T, bool Array, bool Function> struct decay_imp { typedef typename remove_cv<T>::type type; };
26  template <class T> struct decay_imp<T, true, false> { typedef typename remove_bounds<T>::type* type; };
27  template <class T> struct decay_imp<T, false, true> { typedef T* type; };
28 
29  }
30 
31  template< class T >
32  struct decay
33  {
34  private:
35  typedef typename remove_reference<T>::type Ty;
36  public:
38  };
39 
40 } // namespace boost
41 
42 
43 #endif // BOOST_TT_DECAY_HPP_INCLUDED
remove_reference.hpp
add_pointer.hpp
T
T
Definition: mem_fn_cc.hpp:25
remove_bounds.hpp
boost::detail::decay_imp
Definition: decay.hpp:25
remove_cv.hpp
is_function.hpp
boost
BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE.
boost::is_function
Definition: is_function.hpp:95
boost::decay::Ty
remove_reference< T >::type Ty
Definition: decay.hpp:35
boost::detail::decay_imp< T, true, false >::type
remove_bounds< T >::type * type
Definition: decay.hpp:26
is_array.hpp
boost::detail::decay_imp::type
remove_cv< T >::type type
Definition: decay.hpp:25
boost::remove_reference::type
boost::detail::remove_rvalue_ref< T >::type type
Definition: remove_reference.hpp:38
boost::decay
Definition: decay.hpp:32
boost::decay::type
boost::detail::decay_imp< Ty, boost::is_array< Ty >::value, boost::is_function< Ty >::value >::type type
Definition: decay.hpp:37
boost::remove_extent::type
T type
Definition: remove_extent.hpp:18
boost::detail::decay_imp< T, false, true >::type
T * type
Definition: decay.hpp:27
boost::remove_cv::type
T type
Definition: remove_cv.hpp:21


sick_visionary_ros
Author(s): SICK AG TechSupport 3D Snapshot
autogenerated on Thu Feb 8 2024 03:38:10