1// Copyright (C) 2024 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3
4#ifndef PARSERERROR_H
5#define PARSERERROR_H
6
7#include "location.h"
8
9#include <QtCore/qstring.h>
10
11QT_BEGIN_NAMESPACE
12
13struct FnMatchError {
14 QString signature {};
15 Location location {};
16
17};
18
19struct ParserErrorHandler
20{
21 void operator()(const FnMatchError &e) const;
22};
23
24QT_END_NAMESPACE
25
26#endif
27

source code of qttools/src/qdoc/qdoc/src/qdoc/parsererror.h