blob: 9c7e2caa00c4700d8c21de61f55be71370cfd126 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// SPDX-FileCopyrightText: 2022 Linus Jahn <lnj@kaidan.im>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#ifndef QCAINITIALIZER_P_H
#define QCAINITIALIZER_P_H
#include "QXmppGlobal.h"
#include <memory>
namespace QCA {
class Initializer;
}
namespace QXmpp::Private {
// export required for tests
class QXMPP_EXPORT QcaInitializer
{
public:
QcaInitializer();
private:
static std::shared_ptr<QCA::Initializer> createInitializer();
std::shared_ptr<QCA::Initializer> d;
};
} // namespace QXmpp::Private
#endif // QCAINITIALIZER_P_H
|