32#ifndef _QX_IS_QT_HASH_H_
33#define _QX_IS_QT_HASH_H_
46#include <QtCore/qhash.h>
58template <
typename Key,
typename Value>
59struct is_qt_hash< QHash<Key, Value> > :
public std::true_type { ; };
61template <
typename Key,
typename Value>
62struct is_qt_hash< QHash<Key, Value> & > :
public std::true_type { ; };
64template <
typename Key,
typename Value>
65struct is_qt_hash< const QHash<Key, Value> > :
public std::true_type { ; };
67template <
typename Key,
typename Value>
68struct is_qt_hash< const QHash<Key, Value> & > :
public std::true_type { ; };
Root namespace for all QxOrm library features.
qx::trait::is_qt_hash<T>::value : return true if T is a QHash<> container of Qt library,...