#ifndef HASHFUNCTIONS_H #define HASHFUNCTIONS_H #include #include #include namespace std { template <> struct hash { std::size_t operator()(const QGeoCoordinate &c) { hash h; return h(c.latitude()) ^ (h(c.longitude()) << 1) ^ (h(c.altitude()) << 2); } }; template