------------------------------------------------------------------------------------
| 119 | |
| 120 | //------------------------------------------------------------------------------------ |
| 121 | IUIEventSystem* CUIEventSystemIterator::Next(string& sName) |
| 122 | { |
| 123 | IUIEventSystem* pNext = NULL; |
| 124 | if (m_currIter != m_endIter) |
| 125 | { |
| 126 | sName = m_currIter->first; |
| 127 | pNext = m_currIter->second; |
| 128 | ++m_currIter; |
| 129 | } |
| 130 | return pNext; |
| 131 | } |
| 132 | |
| 133 | //------------------------------------------------------------------------------------ |
no outgoing calls
no test coverage detected