//Listing 3: pointer_traits.h #ifndef POINTER_TRAITS_H #define POINTER_TRAITS_H template struct pointer_traits { typedef typename Pointer::element_type element_type; }; template struct pointer_traits { typedef T element_type; }; #endif