orbbec-sdk-sys 0.1.2+2.5.5

Low-level Rust bindings for https://github.com/orbbec/OrbbecSDK_v2
Documentation
// Copyright (c) Orbbec Inc. All Rights Reserved.
// Licensed under the MIT License.

#pragma once
#include "DeviceBase.hpp"
#include "IDeviceManager.hpp"
#include "frameprocessor/FrameProcessor.hpp"

#include <map>
#include <memory>

namespace libobsensor {

class BootDevice : public DeviceBase {
public:
    BootDevice(const std::shared_ptr<const IDeviceEnumInfo> &info);
    virtual ~BootDevice() noexcept override;

protected:
    void fetchDeviceInfo() override;

private:
    void init() override;
};

}  // namespace libobsensor