22 lines
711 B
C++
22 lines
711 B
C++
|
|
// Copyright (c) Orbbec Inc. All Rights Reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
/**
|
||
|
|
* \file ObSensor.hpp
|
||
|
|
* \brief This is the main entry point for the OrbbecSDK C++ library.
|
||
|
|
* It includes all necessary header files for using the library.
|
||
|
|
*/
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <libobsensor/hpp/Context.hpp>
|
||
|
|
#include <libobsensor/hpp/Device.hpp>
|
||
|
|
#include <libobsensor/hpp/Error.hpp>
|
||
|
|
#include <libobsensor/hpp/Filter.hpp>
|
||
|
|
#include <libobsensor/hpp/Frame.hpp>
|
||
|
|
#include <libobsensor/hpp/Pipeline.hpp>
|
||
|
|
#include <libobsensor/hpp/RecordPlayback.hpp>
|
||
|
|
#include <libobsensor/hpp/Sensor.hpp>
|
||
|
|
#include <libobsensor/hpp/StreamProfile.hpp>
|
||
|
|
#include <libobsensor/hpp/Version.hpp>
|
||
|
|
#include <libobsensor/hpp/TypeHelper.hpp>
|