mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-27 23:17:04 +02:00
rename files to snake_case
This commit is contained in:
parent
ea3921d8b7
commit
a30f548a31
87 changed files with 181 additions and 212 deletions
15
server/encoder/encoder_factory.hpp
Normal file
15
server/encoder/encoder_factory.hpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef ENCODER_FACTORY_H
|
||||
#define ENCODER_FACTORY_H
|
||||
|
||||
#include "encoder.hpp"
|
||||
#include <string>
|
||||
|
||||
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