File indexing completed on 2024-06-09 05:17:15

0001 /*
0002     kleo/debug.h
0003 
0004     This file is part of libkleopatra, the KDE keymanagement library
0005     SPDX-FileCopyrightText: 2021, 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 "kleo_export.h"
0014 
0015 namespace GpgME
0016 {
0017 class Key;
0018 }
0019 
0020 namespace Kleo
0021 {
0022 class KeyGroup;
0023 }
0024 
0025 class QDebug;
0026 
0027 KLEO_EXPORT QDebug operator<<(QDebug debug, const GpgME::Key &key);
0028 
0029 KLEO_EXPORT QDebug operator<<(QDebug debug, const Kleo::KeyGroup &group);