1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-27 03:29:16 +02:00

Added support for AlpineQuest AQM maps

This commit is contained in:
2021-02-04 23:22:16 +01:00
parent 5cec192a1c
commit 86c6fa7b03
5 changed files with 530 additions and 5 deletions

View File

@ -2,6 +2,7 @@
#define CONFIG_H
#include <QtGlobal>
#include <QPoint>
#define APP_NAME "GPXSee"
#define APP_HOMEPAGE "http://www.gpxsee.org"
@ -12,4 +13,9 @@
#define HASH_T size_t
#endif // QT6
inline HASH_T qHash(const QPoint &p)
{
return ::qHash(p.x()) ^ ::qHash(p.y());
}
#endif /* CONFIG_H */