| 162 | class EventHandlers { |
| 163 | public: |
| 164 | void put(const ErrorHandler& handler) { |
| 165 | std::unique_lock<std::mutex> lock(errorMutex); |
| 166 | errorHandler = handler; |
| 167 | } |
| 168 | |
| 169 | void error(const char* format, ...) { |
| 170 | va_list vararg; |
no test coverage detected