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