1 #ifndef QTRESTCLIENT_METACOMPONENT_H
2 #define QTRESTCLIENT_METACOMPONENT_H
4 #include "QtRestClient/qtrestclient_global.h"
5 #include "QtRestClient/qtrestclient_helpertypes.h"
7 #include <QtCore/qobject.h>
9 #include <QtJsonSerializer/qtjsonserializer_helpertypes.h>
11 namespace QtRestClient::__private {
14 using EnableGadgetType =
typename std::enable_if<QtJsonSerializer::__private::gadget_helper<T>::value>::type;
17 using EnableObjectType =
typename std::enable_if<std::is_base_of<QObject, T>::value>::type;
19 template <
typename T,
typename Enable =
void>
20 class MetaComponent :
public std::false_type
23 static inline void deleteLater(T) {}
24 static inline void deleteAllLater(
const QList<T> &) {}
28 class MetaComponent<T, EnableGadgetType<T>> :
public std::true_type
31 static inline void deleteLater(T) {}
32 static inline void deleteAllLater(
const QList<T> &) {}
36 class MetaComponent<T*, EnableObjectType<T>> :
public std::true_type
39 static inline void deleteLater(T *obj) {
43 static inline void deleteAllLater(
const QList<T*> &list) {
52 class MetaComponent<T*, EnableGadgetType<T>> :
public std::true_type
55 static inline void deleteLater(T *gad) {
58 static inline void deleteAllLater(
const QList<T*> &list) {
65 #endif // QTRESTCLIENT_METACOMPONENT_H