#pragma once #include #include "io/fwd.hpp" namespace audio { struct PCM; class PCMStream; } namespace ogg { std::unique_ptr load_pcm( const io::path& file, bool headerOnly ); std::unique_ptr create_stream( const io::path& file ); }