File indexing completed on 2024-06-16 04:56:14

0001 /*
0002     view/errorlabel.h
0003 
0004     This file is part of Kleopatra, the KDE keymanager
0005     SPDX-FileCopyrightText: 2022 g10 Code GmbH
0006     SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #pragma once
0012 
0013 #include <QLabel>
0014 
0015 namespace Kleo
0016 {
0017 
0018 class ErrorLabel : public QLabel
0019 {
0020     Q_OBJECT
0021 public:
0022     explicit ErrorLabel(QWidget *parent = nullptr);
0023     ~ErrorLabel() override;
0024 };
0025 
0026 }