qx::trait::is_ptr_to_pod<T>::value : return true if T is a pointer to a POD type (char, int, long, etc.), otherwise return false
More...
#include <is_ptr_to_pod.h>
|
enum | { value = (std::is_pointer<T>::value && (sizeof(qx::trait::is_ptr_to_pod<T>::removePtr(t)) == sizeof(char)))
} |
|
typedef std::conditional< qx::trait::is_ptr_to_pod< T >::value, std::true_type, std::false_type >::type | type |
|
template<typename T>
class qx::trait::is_ptr_to_pod< T >
qx::trait::is_ptr_to_pod<T>::value : return true if T is a pointer to a POD type (char, int, long, etc.), otherwise return false
Definition at line 56 of file is_ptr_to_pod.h.
◆ type
◆ anonymous enum
◆ removePtr() [1/2]
◆ removePtr() [2/2]
template<typename T >
template<typename U >
The documentation for this class was generated from the following file: