solaris.h 472 B

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