| 329 | |
| 330 | |
| 331 | std::string fetchRemote(const std::string& path) |
| 332 | { |
| 333 | std::string temp = tempFilename(path); |
| 334 | arbiter::Arbiter a; |
| 335 | a.put(temp, a.getBinary(path)); |
| 336 | return temp; |
| 337 | } |
| 338 | |
| 339 | std::istream *openFile(const std::string& path, bool asBinary) |
| 340 | { |
no test coverage detected