Fix compilation with newer versions of DUMB
[alure.git] / src / decoders / opusfile.hpp
blob6628b9d97ec2a36b5c53cd058aed760d6f24fce4
1 #ifndef DECODERS_OPUSFILE_HPP
2 #define DECODERS_OPUSFILE_HPP
4 #include "alure2.h"
6 namespace alure {
8 class OpusFileDecoderFactory final : public DecoderFactory {
9 SharedPtr<Decoder> createDecoder(UniquePtr<std::istream> &file) noexcept override;
12 } // namespace alure
14 #endif /* DECODERS_OPUSFILE_HPP */