Perceptual Color

asyncimageproviderbase.cpp
1// SPDX-FileCopyrightText: Lukas Sommer <sommerluk@gmail.com>
2// SPDX-License-Identifier: BSD-2-Clause OR MIT
3
4// Own headers
5// First the interface, which forces the header to be self-contained.
6#include "asyncimageproviderbase.h"
7
8namespace PerceptualColor
9{
10/** @brief Constructor
11 * @param parent The object’s parent object. This parameter will be passed
12 * to the base class’s constructor. */
13AsyncImageProviderBase::AsyncImageProviderBase(QObject *parent)
14 : QObject(parent)
15{
16}
17
18/** @brief Destructor */
19AsyncImageProviderBase::~AsyncImageProviderBase() noexcept
20{
21}
22
23} // namespace PerceptualColor
The namespace of this library.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:36 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.