From patchwork Mon Aug 5 14:36:38 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 20788 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id C4E37C323E for ; Mon, 5 Aug 2024 14:37:28 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id F104A6338B; Mon, 5 Aug 2024 16:37:26 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="BHLCLnyj"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 5009C63381 for ; Mon, 5 Aug 2024 16:37:20 +0200 (CEST) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B6C00581 for ; Mon, 5 Aug 2024 16:36:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1722868588; bh=3EZ88y47cKHOkONmkzjpxp1fS7sHbz3+QV7akuG3PyM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=BHLCLnyjscVysdnIw1iBakmaJ9dGDmBGjRqaCoqicavCxv0zct+d/RXGhM2NAa23E 2kscjo2HgoncmJx0w5evhpjCmeYa6ZAO7ftUpqyZr74zUT4S9kxN7NWPIERrQhNa0x AaE5eOyzqp9Lxj1mDwv8aHO91GzHlPa87Tt9Iico= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH v5 02/18] libcamera: Make all internal headers visible to Doxygen Date: Mon, 5 Aug 2024 17:36:38 +0300 Message-ID: <20240805143654.20870-3-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.44.2 In-Reply-To: <20240805143654.20870-1-laurent.pinchart@ideasonboard.com> References: <20240805143654.20870-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" 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 Reviewed-by: Daniel Scally Reviewed-by: Kieran Bingham --- src/libcamera/camera.cpp | 5 +++++ src/libcamera/request.cpp | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/libcamera/camera.cpp b/src/libcamera/camera.cpp index 67f3490133b2..f89510ea0472 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 cfb451e908da..fdf12c1e9088 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)