Typedef nvcv::HandleTypeOf

Typedef Documentation

template<class T>
using nvcv::HandleTypeOf = typename std::remove_pointer<T>::type::HandleType

Helper type alias to deduce the handle type of a given class T.

This type alias uses std::remove_pointer to strip the pointer off of T (if any), and then accesses the HandleType nested type within T.

Template Parameters:

T – The class type from which to deduce the handle type.