Home
last modified time | relevance | path

Searched defs:class_transform (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/function_types/detail/
Dclass_transform.hpp27 struct class_transform struct
28 { typedef typename mpl::apply1<L,T>::type type; };
35 template<typename T> struct class_transform< T, mpl::identity<_> > struct
36 { typedef T type; };
38 template<typename T> struct class_transform< T, add_reference<_> > struct
39 { typedef T & type; };
41 template<typename T> struct class_transform< T, add_pointer<_> > struct
42 { typedef T * type; };
44 template<typename T> struct class_transform< T, remove_cv<_> > struct
45 { typedef typename boost::remove_cv<T>::type type; };
[all …]