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 "OpenNIDeviceBase.hpp"
#include "IDeviceManager.hpp"
#include "frameprocessor/FrameProcessor.hpp"
#include "property/PropertyServer.hpp"

#include <map>
#include <memory>

namespace libobsensor {

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

protected:
    virtual void init() override;
    virtual void initSensorList() override;
    virtual void initProperties() override;
};

}  // namespace libobsensor