20 lines
415 B
C
Raw Normal View History

2020-04-18 15:17:53 -07:00
#ifndef BACKENDS_OBOE_H
#define BACKENDS_OBOE_H
#include "base.h"
2020-04-18 15:17:53 -07:00
struct OboeBackendFactory final : public BackendFactory {
public:
bool init() override;
bool querySupport(BackendType type) override;
std::string probe(BackendType type) override;
2021-04-24 09:03:14 -07:00
BackendPtr createBackend(DeviceBase *device, BackendType type) override;
2020-04-18 15:17:53 -07:00
static BackendFactory &getFactory();
};
#endif /* BACKENDS_OBOE_H */