#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()) ^ h(c.altitude()); } }; template