| 149 | } |
| 150 | |
| 151 | size_t ContextManager::getContextsSize() const { |
| 152 | std::lock_guard<std::mutex> lock(_mutex); |
| 153 | return _contextById.size(); |
| 154 | } |
| 155 | |
| 156 | void ContextManager::setListener(IContextManagerListener* listener) { |
| 157 | _listener = listener; |
no test coverage detected