mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-29 10:17:16 +02:00
15 lines
254 B
C++
15 lines
254 B
C++
#ifndef ENCODER_FACTORY_H
|
|
#define ENCODER_FACTORY_H
|
|
|
|
#include <string>
|
|
#include "encoder.h"
|
|
|
|
class EncoderFactory
|
|
{
|
|
public:
|
|
// EncoderFactory(const std::string& codecSettings);
|
|
Encoder* createEncoder(const std::string& codecSettings) const;
|
|
};
|
|
|
|
|
|
#endif
|