mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 07:19:45 +03:00
Provide a CameraManager class which will handle listing, instancing, destruction and lifetime management of cameras. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23 lines
388 B
C++
23 lines
388 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2018, Google Inc.
|
|
*
|
|
* libcamera.h - libcamera public API
|
|
*/
|
|
#ifndef __LIBCAMERA_LIBCAMERA_H__
|
|
#define __LIBCAMERA_LIBCAMERA_H__
|
|
|
|
#include <libcamera/camera.h>
|
|
#include <libcamera/camera_manager.h>
|
|
|
|
namespace libcamera {
|
|
|
|
class libcamera
|
|
{
|
|
public:
|
|
void init_lib(void);
|
|
};
|
|
|
|
};
|
|
|
|
#endif /* __LIBCAMERA_LIBCAMERA_H__ */
|