----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 38 | // Constructor |
| 39 | //----------------------------------------------------------------------------- |
| 40 | EventImpl::EventImpl |
| 41 | ( |
| 42 | ) |
| 43 | { |
| 44 | // Create a manual reset event |
| 45 | m_hEvent = ::CreateEvent( NULL, TRUE, FALSE, NULL ); |
| 46 | } |
| 47 | |
| 48 | //----------------------------------------------------------------------------- |
| 49 | // <EventImpl::~EventImpl> |
nothing calls this directly
no outgoing calls
no test coverage detected