| 304 | } |
| 305 | |
| 306 | std::string ReadFile(const std::string& path) { |
| 307 | std::ifstream stream(path.c_str(), std::ios::binary); |
| 308 | return std::string((std::istreambuf_iterator<char>(stream)), |
| 309 | std::istreambuf_iterator<char>()); |
| 310 | } |
| 311 | |
| 312 | class TemporaryTextConfigRegistry { |
| 313 | public: |
no outgoing calls
no test coverage detected