mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-30 02:37:15 +02:00
14 lines
205 B
C++
14 lines
205 B
C++
#ifndef PCM_READER_FACTORY_H
|
|
#define PCM_READER_FACTORY_H
|
|
|
|
#include <string>
|
|
#include "pcmReader.h"
|
|
|
|
class PcmReaderFactory
|
|
{
|
|
public:
|
|
PcmReader* createPcmReader(const std::string& uri) const;
|
|
};
|
|
|
|
|
|
#endif
|