mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-31 17:15:14 +01:00
19 lines
283 B
C
19 lines
283 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
|
||
|
#else // QT6
|
||
|
#define HASH_T size_t
|
||
|
#endif // QT6
|
||
|
|
||
|
inline HASH_T qHash(const QPoint &p)
|
||
|
{
|
||
|
return ::qHash(p.x()) ^ ::qHash(p.y());
|
||
|
}
|
||
|
|
||
|
#endif // HASH_H
|