From 960b1b2e879e2b876f1e7b92318a4161e7d0964d Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Fri, 23 Jul 2021 06:06:28 +0300 Subject: libcamera: base: class: Document Extensible::_d() functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Extensible::_d() functions are meant to be called by users of the class. Document them. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund Reviewed-by: Jacopo Mondi --- include/libcamera/base/class.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include') diff --git a/include/libcamera/base/class.h b/include/libcamera/base/class.h index c2e1d353..9c7f0f2e 100644 --- a/include/libcamera/base/class.h +++ b/include/libcamera/base/class.h @@ -88,7 +88,6 @@ public: Extensible(Private *d); protected: -#ifndef __DOXYGEN__ template const T *_d() const { @@ -100,7 +99,6 @@ protected: { return static_cast(d_.get()); } -#endif private: const std::unique_ptr d_; -- cgit v1.2.1