libcamera: base: class: Document Extensible::_d() functions

The Extensible::_d() functions are meant to be called by users of the
class. Document them.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
Laurent Pinchart
2021-07-23 06:06:28 +03:00
parent 6a8582dc20
commit 960b1b2e87
2 changed files with 17 additions and 2 deletions

View File

@@ -88,7 +88,6 @@ public:
Extensible(Private *d);
protected:
#ifndef __DOXYGEN__
template<typename T>
const T *_d() const
{
@@ -100,7 +99,6 @@ protected:
{
return static_cast<T *>(d_.get());
}
#endif
private:
const std::unique_ptr<Private> d_;