| 196 | //============================================================================// |
| 197 | |
| 198 | void EventHandler::GetEventList(std::vector<std::string>& eventList) const { |
| 199 | eventList.clear(); |
| 200 | EventMap::const_iterator it; |
| 201 | for (it = eventMap.begin(); it != eventMap.end(); ++it) { |
| 202 | eventList.push_back(it->first); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | |
| 207 | const EventHandler::EventInfo* |
no test coverage detected