File indexing completed on 2024-05-26 05:21:36

0001 /* -*- mode: c++; c-basic-offset:4 -*-
0002     selftest/gpgagentcheck.h
0003 
0004     This file is part of Kleopatra, the KDE keymanager
0005     SPDX-FileCopyrightText: 2009 Klarälvdalens Datakonsult AB
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 #pragma once
0011 
0012 #include <selftest/selftest.h>
0013 
0014 #include <memory>
0015 
0016 namespace Kleo
0017 {
0018 
0019 class SelfTest;
0020 
0021 std::shared_ptr<SelfTest> makeGpgAgentConnectivitySelfTest();
0022 
0023 }