diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-01-08 16:28:13 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-01-10 15:27:49 +0200 |
commit | afcec99b99c3313805deaededa3158e4ad089b6e (patch) | |
tree | 324a282660f95a69ac9f1e158e4c784efa3ed3c2 | |
parent | 4e78147df919b6cbc4f117d6a0229819647d503e (diff) |
libcamera: Update libcamera.h
libcamera.h hasn't been updated with the recently added public headers
event_notifier.h, signal.h and timer.h. Add them.
The event_dispatcher_poll.h header, which used to be public, is now
private, but hasn't been removed from libcamera.h. Remove it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
-rw-r--r-- | include/libcamera/libcamera.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libcamera/libcamera.h b/include/libcamera/libcamera.h index 2dcaeda4..c0511cf6 100644 --- a/include/libcamera/libcamera.h +++ b/include/libcamera/libcamera.h @@ -10,6 +10,8 @@ #include <libcamera/camera.h> #include <libcamera/camera_manager.h> #include <libcamera/event_dispatcher.h> -#include <libcamera/event_dispatcher_poll.h> +#include <libcamera/event_notifier.h> +#include <libcamera/signal.h> +#include <libcamera/timer.h> #endif /* __LIBCAMERA_LIBCAMERA_H__ */ |