| 13 | unsigned char code() const { return mCode; } |
| 14 | unsigned char row() const { return (mCode >> 3) & 7; } |
| 15 | unsigned char col() const { return (mCode >> 0) & 7; } |
| 16 | |
| 17 | bool operator==(KeyCode other) const { return code() == other.code(); } |
| 18 | bool operator!=(KeyCode other) const { return !(*this == other); } |