snapcast/client/decoder.h
(no author) 04e872e036 new messaging
git-svn-id: svn://elaine/murooma/trunk@230 d8a302eb-03bc-478d-80e4-98257eca68ef
2014-09-04 19:23:29 +00:00

15 lines
158 B
C++

#ifndef DECODER_H
#define DECODER_H
#include "common/message.h"
class Decoder
{
public:
Decoder();
virtual bool decode(PcmChunk* chunk) = 0;
};
#endif