summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/src/qdoc/parsererror.h
blob: 85435366fc6b8c5a39264c801368c5c8f78cd417 (plain)
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
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef PARSERERROR_H
#define PARSERERROR_H

#include "location.h"

#include <QtCore/qstring.h>

QT_BEGIN_NAMESPACE

struct FnMatchError {
    QString signature {};
    Location location {};

};

struct ParserErrorHandler
{
    void operator()(const FnMatchError &e) const;
};

QT_END_NAMESPACE

#endif