| 81 | } |
| 82 | |
| 83 | void ServiceReferenceBase::GetPropertyKeys(std::vector<std::string>& keys) const |
| 84 | { |
| 85 | if (d == nullptr || d->registration == nullptr) return; |
| 86 | |
| 87 | MutexLock lock(d->registration->propsLock); |
| 88 | |
| 89 | const std::vector<std::string>& ks = d->registration->properties.Keys(); |
| 90 | keys.assign(ks.begin(), ks.end()); |
| 91 | } |
| 92 | |
| 93 | Module* ServiceReferenceBase::GetModule() const |
| 94 | { |
no test coverage detected