mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-29 18:27:12 +02:00
20 lines
341 B
C++
20 lines
341 B
C++
#ifndef ENCODER_FACTORY_H
|
|
#define ENCODER_FACTORY_H
|
|
|
|
#include "encoder.hpp"
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace encoder
|
|
{
|
|
|
|
class EncoderFactory
|
|
{
|
|
public:
|
|
// EncoderFactory(const std::string& codecSettings);
|
|
std::unique_ptr<Encoder> createEncoder(const std::string& codecSettings) const;
|
|
};
|
|
|
|
} // namespace encoder
|
|
|
|
#endif
|