Searched refs:APITypeInfo (Results 1 – 2 of 2) sorted by relevance
69 template<typename APIType> struct APITypeInfo { }; struct73 template<> struct APITypeInfo<TheAPIType> { typedef TheImplType* ImplType; }; \115 inline typename APITypeInfo<T>::ImplType toImpl(T t) in toImpl()123 return reinterpret_cast<typename APITypeInfo<T>::ImplType>(const_cast<NonConstValueType*>(t)); in toImpl()
109 template<typename APIReturnValueType, typename InternalReturnValueType = typename APITypeInfo<APIRe…