| 118 | } |
| 119 | |
| 120 | void SEventSet::addEvent( const DWORD dwEventID ,LPCWSTR pszEventHandlerName) |
| 121 | { |
| 122 | if(!isEventPresent(dwEventID)) |
| 123 | { |
| 124 | m_evtArr.Add(new SEvent(dwEventID,pszEventHandlerName)); |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | void SEventSet::removeEvent( const DWORD dwEventID ) |
| 129 | { |
no test coverage detected