libQuotient
A Qt library for building matrix clients
Loading...
Searching...
No Matches
keyimport.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2024 Tobias Fella <tobias.fella@kde.org>
2// SPDX-License-Identifier: LGPL-2.0-or-later
3
4#pragma once
5
6#include "expected.h" // Only here to not break client code still using Expected
8
9#include <QtCore/QObject>
10
11class TestKeyImport;
12
13namespace Quotient
14{
15class Connection;
16}
17
18namespace Quotient
19{
20
22{
24
25public:
26 enum Error {
31 };
33
34 using QObject::QObject;
35
40
41 friend class ::TestKeyImport;
42
43private:
46};
47
48}
#define QUOTIENT_API