1 #ifndef _SIGX_CONST_TRAIT_HPP_
2 #define _SIGX_CONST_TRAIT_HPP_
39 template<
typename T_type>
42 typedef const T_type
add;
43 typedef T_type
remove;
48 template<
typename T_type>
51 typedef const T_type
add;
52 typedef T_type
remove;
95 template<
typename T_type>
98 typedef const T_type&
add;
99 typedef T_type&
remove;
104 template<
typename T_type>
107 typedef const T_type&
add;
108 typedef T_type&
remove;
120 #endif // end file guard
const T_type & add
Definition: const_trait.h:98
const T_type add
Definition: const_trait.h:51
const T_type & add
Definition: const_trait.h:107
Traits for adding/removing the const qualifier from a type.
Definition: const_trait.h:40
Definition: auto_dispatchable.h:27
const T_type add
Definition: const_trait.h:42