mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-17 19:16:14 +02:00
18 lines
269 B
C++
18 lines
269 B
C++
#ifndef DECODER_H
|
|
#define DECODER_H
|
|
#include "message/pcmChunk.h"
|
|
#include "message/header.h"
|
|
|
|
class Decoder
|
|
{
|
|
public:
|
|
Decoder() {};
|
|
virtual ~Decoder() {};
|
|
virtual bool decode(msg::PcmChunk* chunk) = 0;
|
|
virtual bool setHeader(msg::Header* chunk) = 0;
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|