mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-04-03 13:09:10 +02:00
16 lines
323 B
C
16 lines
323 B
C
#ifndef METATYPE_H
|
|
#define METATYPE_H
|
|
|
|
#include <QSqlField>
|
|
|
|
static inline QMetaType::Type METATYPE(const QSqlField &f)
|
|
{
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
return static_cast<QMetaType::Type>(f.type());
|
|
#else // QT 6
|
|
return static_cast<QMetaType::Type>(f.metaType().id());
|
|
#endif // QT 6
|
|
}
|
|
|
|
#endif // METATYPE_H
|