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