| 23 | #include "stdafx.hpp" |
| 24 | |
| 25 | cEvent::cEvent( const eEventType& pType ) { |
| 26 | |
| 27 | mHasFocus = false; |
| 28 | mType = pType; |
| 29 | mButton = 0; |
| 30 | mButtonCount = 0; |
| 31 | } |
| 32 | |
| 33 | cEvent::~cEvent() { |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected