blob: a7d9d2407deb2f67540b186d2e93f34677abc1c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef SYNTAXHIGHLIGHTERDATA_H
#define SYNTAXHIGHLIGHTERDATA_H
#include <QByteArrayView>
#include <QList>
class SyntaxHighlighterData
{
public:
SyntaxHighlighterData();
static QList<QByteArrayView> reservedArgumentNames();
static QList<QByteArrayView> reservedTagNames();
static QList<QByteArrayView> reservedFunctionNames();
};
#endif // SYNTAXHIGHLIGHTERDATA_H
|