Enable proper full C++ exception handling on MSVC
[openal-soft.git] / alc / backends / sndio.h
bloba4496c92aabfd6729c9e67b69e5b641e0aa51f32
1 #ifndef BACKENDS_SNDIO_H
2 #define BACKENDS_SNDIO_H
4 #include "base.h"
6 struct SndIOBackendFactory final : public BackendFactory {
7 public:
8 auto init() -> bool final;
10 auto querySupport(BackendType type) -> bool final;
12 auto enumerate(BackendType type) -> std::vector<std::string> final;
14 auto createBackend(DeviceBase *device, BackendType type) -> BackendPtr final;
16 static auto getFactory() -> BackendFactory&;
19 #endif /* BACKENDS_SNDIO_H */