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