| 52 | |
| 53 | |
| 54 | ModelMemoryReader::ModelMemoryReader(std::string model_name) |
| 55 | : _model_name(std::move(model_name)) |
| 56 | { |
| 57 | } |
| 58 | |
| 59 | void ModelMemoryReader::register_file(std::string filename, std::string content) { |
| 60 | _files.emplace(std::move(filename), std::move(content)); |
nothing calls this directly
no outgoing calls
no test coverage detected