| 51 | } |
| 52 | |
| 53 | void getStrings(std::vector<std::string>& _return) override { |
| 54 | concurrency::Guard g(mutex_); |
| 55 | log_->append(EventLog::ET_CALL_GET_STRINGS, 0, 0); |
| 56 | _return = strings_; |
| 57 | } |
| 58 | |
| 59 | void getDataWait(std::string& _return, const int32_t length) override { |
| 60 | concurrency::Guard g(mutex_); |
no test coverage detected