Messagelib

scamcheckshorturlmanager.h
1/*
2 SPDX-FileCopyrightText: 2016-2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5
6*/
7
8#pragma once
9
10#include "messageviewer_export.h"
11#include <QObject>
12#include <memory>
13namespace MessageViewer
14{
15class ScamCheckShortUrl;
16class ScamCheckShortUrlManagerPrivate;
17/**
18 * @brief The ScamCheckShortUrlManager class
19 * @author Laurent Montel <montel@kde.org>
20 */
21class MESSAGEVIEWER_EXPORT ScamCheckShortUrlManager : public QObject
22{
23 Q_OBJECT
24public:
26 static ScamCheckShortUrlManager *self();
27 [[nodiscard]] ScamCheckShortUrl *scamCheckShortUrl() const;
28
29private:
30 explicit ScamCheckShortUrlManager(QObject *parent = nullptr);
31 std::unique_ptr<ScamCheckShortUrlManagerPrivate> const d;
32};
33}
The ScamCheckShortUrlManager class.
The ScamCheckShortUrl class.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:43:26 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.