#ifndef DECODER_MPG123_H #define DECODER_MPG123_H #include "decoder.h" #include class DecoderMpg123 : public Decoder { private: mpg123_handle *handle; public: DecoderMpg123(const std::string& filename); ~DecoderMpg123(); virtual std::size_t read(char* buf, std::size_t buf_size); }; #endif