30 #ifndef _CONST_TRAITS_HXX_
31 #define _CONST_TRAITS_HXX_
33 template <
typename T >
struct ConstTrait {
typedef T NonConstType; };
34 template <
typename T >
struct ConstTrait < const T > {
typedef T NonConstType; };
Definition: ConstTraits.hxx:33