| 440 | } |
| 441 | |
| 442 | inline std::unique_ptr<AudioFileReader> AudioFileFormat::createReader (const std::filesystem::path& p) |
| 443 | { |
| 444 | return createReader (std::make_shared<std::ifstream> (p, std::ios::binary | std::ios::in)); |
| 445 | } |
| 446 | |
| 447 | inline std::unique_ptr<AudioFileWriter> AudioFileFormat::createWriter (const std::filesystem::path& file, AudioFileProperties p) |
| 448 | { |
nothing calls this directly
no outgoing calls
no test coverage detected