Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
21 lines
319 B
C++
21 lines
319 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__
|
|
|
|
namespace libcamera {
|
|
|
|
class libcamera
|
|
{
|
|
public:
|
|
void init_lib(void);
|
|
};
|
|
|
|
};
|
|
|
|
#endif /* __LIBCAMERA_LIBCAMERA_H__ */
|