openal-soft/alc/backends/loopback.h
Chris Robinson 061148072f Update include headers
Don't add alc/ to the include paths.
2021-04-27 16:04:54 -07:00

20 lines
431 B
C++

#ifndef BACKENDS_LOOPBACK_H
#define BACKENDS_LOOPBACK_H
#include "base.h"
struct LoopbackBackendFactory final : public BackendFactory {
public:
bool init() override;
bool querySupport(BackendType type) override;
std::string probe(BackendType type) override;
BackendPtr createBackend(DeviceBase *device, BackendType type) override;
static BackendFactory &getFactory();
};
#endif /* BACKENDS_LOOPBACK_H */