mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-27 23:17:04 +02:00
Add namespace for encoder and decoder
This commit is contained in:
parent
c1a2fedd8d
commit
07e8290ee4
25 changed files with 124 additions and 38 deletions
|
@ -4,6 +4,9 @@
|
|||
#include "encoder.hpp"
|
||||
#include <string>
|
||||
|
||||
namespace encoder
|
||||
{
|
||||
|
||||
class EncoderFactory
|
||||
{
|
||||
public:
|
||||
|
@ -11,5 +14,6 @@ public:
|
|||
Encoder* createEncoder(const std::string& codecSettings) const;
|
||||
};
|
||||
|
||||
} // namespace encoder
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue