MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / qHash

Method qHash

gui/qt/keypad/keycode.h:19–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 bool operator==(KeyCode other) const { return code() == other.code(); }
18 bool operator!=(KeyCode other) const { return !(*this == other); }
19 friend uint qHash(KeyCode code, uint seed = 0) {
20 return qHash(code.code(), seed);
21 }
22
23private:
24 unsigned char mCode;

Callers

nothing calls this directly

Calls 1

codeMethod · 0.80

Tested by

no test coverage detected