snapcast/client/pcmDecoder.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

16 lines
165 B
C++

#ifndef PCM_DECODER_H
#define PCM_DECODER_H
#include "decoder.h"
class PcmDecoder
{
public:
PcmDecoder();
virtual bool decode(BaseMessage* chunk);
};
#endif