mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-19 12:12:08 +01:00
19 lines
286 B
C
19 lines
286 B
C
#ifndef HASH_H
|
|
#define HASH_H
|
|
|
|
#include <QtGlobal>
|
|
#include <QPoint>
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
#define HASH_T uint
|
|
|
|
inline uint qHash(const QPoint &p)
|
|
{
|
|
return qHash(QPair<int, int>(p.x(), p.y()));
|
|
}
|
|
#else // QT6
|
|
#define HASH_T size_t
|
|
#endif // QT6
|
|
|
|
#endif // HASH_H
|