| 4 | namespace SDR::File |
| 5 | { |
| 6 | ScopedFile::ScopedFile(const char* path, const char* mode) |
| 7 | { |
| 8 | Assign(path, mode); |
| 9 | } |
| 10 | |
| 11 | ScopedFile::ScopedFile(const std::string& path, const char* mode) |
| 12 | { |
nothing calls this directly
no outgoing calls
no test coverage detected