mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-24 06:26:15 +02:00
16 lines
154 B
C++
16 lines
154 B
C++
#ifndef ENCODER_H
|
|
#define ENCODER_H
|
|
#include "common/chunk.h"
|
|
|
|
|
|
class Encoder
|
|
{
|
|
public:
|
|
Encoder();
|
|
virtual bool encode(Chunk* chunk) = 0;
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|