diff --git a/src/blurhashimageprovider.h b/src/blurhashimageprovider.h index ab887832d..115c98f66 100644 --- a/src/blurhashimageprovider.h +++ b/src/blurhashimageprovider.h @@ -5,9 +5,22 @@ #include +/** + * @class BlurhashImageProvider + * + * A QQuickImageProvider for blurhashes. + * + * @sa QQuickImageProvider + */ class BlurhashImageProvider : public QQuickImageProvider { public: BlurhashImageProvider(); + + /** + * @brief Return an image for a given ID. + * + * @sa QQuickImageProvider::requestImage + */ QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize) override; -}; \ No newline at end of file +};