snapcast/client/decoder.h
(no author) 763d17defc decider
git-svn-id: svn://elaine/murooma/trunk@218 d8a302eb-03bc-478d-80e4-98257eca68ef
2014-08-29 05:36:48 +00:00

16 lines
154 B
C++

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