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