QxOrm
1.5.0
C++ Object Relational Mapping library
|
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>
Public Types | |
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 |
Static Private Member Functions | |
template<typename U > | |
static std::conditional < qx::trait::is_qx_pod< U > ::value, char, int >::type | removePtr (const volatile U *const volatile) |
static int | removePtr (...) |
Static Private Attributes | |
static T | 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.
typedef std::conditional<qx::trait::is_ptr_to_pod<T>::value, std::true_type, std::false_type>::type qx::trait::is_ptr_to_pod< T >::type |
Definition at line 71 of file is_ptr_to_pod.h.
anonymous enum |
Definition at line 69 of file is_ptr_to_pod.h.
static std::conditional<qx::trait::is_qx_pod<U>::value, char, int>::type qx::trait::is_ptr_to_pod< T >::removePtr | ( | const volatile U *const | volatile | ) | [static, private] |
static int qx::trait::is_ptr_to_pod< T >::removePtr | ( | ... | ) | [static, private] |
T qx::trait::is_ptr_to_pod< T >::t [static, private] |
Definition at line 65 of file is_ptr_to_pod.h.