#pragma once #include #include namespace std { template<> struct hash { constexpr unsigned operator()(const QString& value) const { return qHash(value); } }; }