QXmpp Version: 1.7.0
Loading...
Searching...
No Matches
Stream.h
1// SPDX-FileCopyrightText: 2024 Linus Jahn <lnj@kaidan.im>
2//
3// SPDX-License-Identifier: LGPL-2.1-or-later
4
5#ifndef STREAM_H
6#define STREAM_H
7
8#include <QString>
9
10class QXmlStreamWriter;
11
12namespace QXmpp::Private {
13
14struct StreamOpen {
15 void toXml(QXmlStreamWriter *) const;
16
17 QString to;
18 QString from;
19 QStringView xmlns;
20};
21
22} // namespace QXmpp::Private
23
24#endif // STREAM_H