Avoid class templates for the POPCNT64/CTZ64 macros
[openal-soft.git] / alc / backends / pulseaudio.h
blob86b81502175c63e440f091208144df65a2d74432
1 #ifndef BACKENDS_PULSEAUDIO_H
2 #define BACKENDS_PULSEAUDIO_H
4 #include "backends/base.h"
6 class PulseBackendFactory final : public BackendFactory {
7 public:
8 bool init() override;
10 bool querySupport(BackendType type) override;
12 std::string probe(BackendType type) override;
14 BackendPtr createBackend(ALCdevice *device, BackendType type) override;
16 static BackendFactory &getFactory();
19 #endif /* BACKENDS_PULSEAUDIO_H */