mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-21 21:16:15 +02:00
subdirectory for encoder/decoder
This commit is contained in:
parent
e2362a2750
commit
30a88602dc
23 changed files with 9 additions and 9 deletions
15
server/encoder/encoderFactory.h
Normal file
15
server/encoder/encoderFactory.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue