You've already forked nodeeditor
mirror of
https://github.com/AxioDL/nodeeditor.git
synced 2026-03-30 11:48:31 -07:00
ddfdaa947d
* Update CMakeLists.txt to modern practices * Add CMake installs() restructure include/ src/ to accomodate it
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);
|
|
}
|
|
};
|
|
}
|