You've already forked n64-controller
20 lines
233 B
C++
20 lines
233 B
C++
#pragma once
|
|
|
|
#include <functional>
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QVariant>
|
|
|
|
namespace std
|
|
{
|
|
template<>
|
|
struct hash<QString>
|
|
{
|
|
inline std::size_t
|
|
operator()(QString const &s) const
|
|
{
|
|
return qHash(s);
|
|
}
|
|
};
|
|
}
|