Default constructor: initializes internal keycode to a invalid value
| 45 | public: |
| 46 | // Default constructor: initializes internal keycode to a invalid value |
| 47 | KeyboardCode() : m_nativeKeyCode(0) { } |
| 48 | |
| 49 | // Construct object from its native value |
| 50 | KeyboardCode(int v) : m_nativeKeyCode(v) { } |
nothing calls this directly
no outgoing calls
no test coverage detected