mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-30 09:26:15 +02:00
16 lines
154 B
C++
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
|
|
|
|
|