diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-09-21 04:06:34 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-11-08 00:11:17 +0200 |
commit | 549d982f61fd3820aa3d14c21406f5ce360a5b90 (patch) | |
tree | f3c97d1c9f11398944db8c0047d388887bcca164 /include | |
parent | 79c34d58c7bb005efabbb960f66b9dfd11cb36ec (diff) |
libcamera: camera_manager: Inherit from Extensible
Use the d-pointer infrastructure offered by the Extensible class to
replace the custom implementation.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/camera_manager.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/libcamera/camera_manager.h b/include/libcamera/camera_manager.h index 9eb2b6f5..6d5341c7 100644 --- a/include/libcamera/camera_manager.h +++ b/include/libcamera/camera_manager.h @@ -12,6 +12,7 @@ #include <sys/types.h> #include <vector> +#include <libcamera/extensible.h> #include <libcamera/object.h> #include <libcamera/signal.h> @@ -20,8 +21,9 @@ namespace libcamera { class Camera; class EventDispatcher; -class CameraManager : public Object +class CameraManager : public Object, public Extensible { + LIBCAMERA_DECLARE_PRIVATE(CameraManager) public: CameraManager(); CameraManager(const CameraManager &) = delete; @@ -50,9 +52,6 @@ public: private: static const std::string version_; static CameraManager *self_; - - class Private; - std::unique_ptr<Private> p_; }; } /* namespace libcamera */ |