| 83 | } |
| 84 | |
| 85 | std::string BackendRegistry::GetBackendIdsAsString() const |
| 86 | { |
| 87 | static const std::string delimitator = ", "; |
| 88 | |
| 89 | std::stringstream output; |
| 90 | for (auto& backendId : GetBackendIds()) |
| 91 | { |
| 92 | if (output.tellp() != std::streampos(0)) |
| 93 | { |
| 94 | output << delimitator; |
| 95 | } |
| 96 | output << backendId; |
| 97 | } |
| 98 | |
| 99 | return output.str(); |
| 100 | } |
| 101 | |
| 102 | void BackendRegistry::Swap(BackendRegistry& instance, BackendRegistry::FactoryStorage& other) |
| 103 | { |
no test coverage detected