otherio.h 572 B

123456789101112131415161718192021
  1. #ifndef BACKENDS_OTHERIO_H
  2. #define BACKENDS_OTHERIO_H
  3. #include "base.h"
  4. struct OtherIOBackendFactory final : public BackendFactory {
  5. public:
  6. auto init() -> bool final;
  7. auto querySupport(BackendType type) -> bool final;
  8. auto queryEventSupport(alc::EventType eventType, BackendType type) -> alc::EventSupport final;
  9. auto enumerate(BackendType type) -> std::vector<std::string> final;
  10. auto createBackend(DeviceBase *device, BackendType type) -> BackendPtr final;
  11. static auto getFactory() -> BackendFactory&;
  12. };
  13. #endif /* BACKENDS_OTHERIO_H */