mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-12-02 23:49:09 +01:00
22 lines
374 B
C
22 lines
374 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#include <QtGlobal>
|
|
#include <QPoint>
|
|
|
|
#define APP_NAME "GPXSee"
|
|
#define APP_HOMEPAGE "http://www.gpxsee.org"
|
|
|
|
#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 /* CONFIG_H */
|