| 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 | #include "qhelplink.h" |
| 5 | |
| 6 | /*! |
| 7 | \class QHelpLink |
| 8 | \since 5.15 |
| 9 | \inmodule QtHelp |
| 10 | \brief The QHelpLink struct provides the data associated with a help link. |
| 11 | |
| 12 | The QHelpLink object is a data object that describes a link to a documentation file. |
| 13 | The description of the help link contains the document title and URL of the document. |
| 14 | \sa QHelpEngineCore |
| 15 | */ |
| 16 | |
| 17 | /*! |
| 18 | \variable QHelpLink::url |
| 19 | \brief The target url of the link. |
| 20 | */ |
| 21 | /*! |
| 22 | \variable QHelpLink::title |
| 23 | \brief The title of the link. |
| 24 | */ |
| 25 | |