#ifndef UTILS_H #define UTILS_H #include #include #include namespace std { template<> struct hash { std::size_t operator()(const QString& s) const noexcept { return (size_t) qHash(s); } }; } #endif