summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2024-08-04 22:48:04 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2024-08-07 17:57:03 +0300
commitd0ef1b9451e5cfb064ca32280a7d7f6959556784 (patch)
tree4976dd0ff8c16e172a0f664dd735a7596aa8c7a1
parenta458eb1adf5c08bec298f1f98326a420068ac79f (diff)
libcamera: Make all internal headers visible to Doxygen
Two classes that have both public and internal headers, namely Camera and Request, make only their public header visible to Doxygen through a file directive. Fix them. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r--src/libcamera/camera.cpp5
-rw-r--r--src/libcamera/request.cpp5
2 files changed, 10 insertions, 0 deletions
diff --git a/src/libcamera/camera.cpp b/src/libcamera/camera.cpp
index 67f34901..f89510ea 100644
--- a/src/libcamera/camera.cpp
+++ b/src/libcamera/camera.cpp
@@ -117,6 +117,11 @@
* of view is affected by the pipeline.
*/
+/**
+ * \file libcamera/internal/camera.h
+ * \brief Internal camera device handling
+ */
+
namespace libcamera {
LOG_DECLARE_CATEGORY(Camera)
diff --git a/src/libcamera/request.cpp b/src/libcamera/request.cpp
index cfb451e9..fdf12c1e 100644
--- a/src/libcamera/request.cpp
+++ b/src/libcamera/request.cpp
@@ -28,6 +28,11 @@
* \brief Describes a frame capture request to be processed by a camera
*/
+/**
+ * \file libcamera/internal/request.h
+ * \brief Internal support for request handling
+ */
+
namespace libcamera {
LOG_DEFINE_CATEGORY(Request)