1 #ifndef BACKENDS_NULL_H
2 #define BACKENDS_NULL_H
6 struct NullBackendFactory final
: public BackendFactory
{
10 bool querySupport(BackendType type
) override
;
12 std::string
probe(BackendType type
) override
;
14 BackendPtr
createBackend(DeviceBase
*device
, BackendType type
) override
;
16 static BackendFactory
&getFactory();
19 #endif /* BACKENDS_NULL_H */