1// Copyright (C) 2020 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QHELPLINK_H
5#define QHELPLINK_H
6
7#include <QtHelp/qhelp_global.h>
8
9#include <QtCore/QUrl>
10
11QT_BEGIN_NAMESPACE
12
13struct QHELP_EXPORT QHelpLink final
14{
15 QUrl url;
16 QString title;
17};
18
19QT_END_NAMESPACE
20
21#endif // QHELPLINK_H
22

source code of qttools/src/assistant/help/qhelplink.h