32#ifndef _QX_IS_QX_POD_H_
33#define _QX_IS_QX_POD_H_
57 enum {
value = (std::is_pod<T>::value && ! std::is_pointer<T>::value && ! std::is_member_pointer<T>::value) };
59 typedef typename std::conditional<qx::trait::is_qx_pod<T>::value, std::true_type, std::false_type>
::type type;
QxOrm library traits (template metaprogramming) not available in boost::type_traits library.
Root namespace for all QxOrm library features.
qx::trait::is_qx_pod<T>::value : return true if T is a POD type and not a pointer
std::conditional< qx::trait::is_qx_pod< T >::value, std::true_type, std::false_type >::type type