MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / operator!=

Method operator!=

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

Source from the content-addressed store, hash-verified

16
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 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected