Provide a poll-based event dispatcher implementation as convenience for applications that don't need a custom event loop. The poll-based dispatcher is automatically instantiated if the application doesn't provide its own dispatcher. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
16 lines
394 B
C
16 lines
394 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>
|
|
#include <libcamera/event_dispatcher.h>
|
|
#include <libcamera/event_dispatcher_poll.h>
|
|
|
|
#endif /* __LIBCAMERA_LIBCAMERA_H__ */
|