1 | /* |
2 | SPDX-FileCopyrightText: 2018 Eike Hein <hein@kde.org> |
3 | |
4 | SPDX-License-Identifier: MIT |
5 | */ |
6 | |
7 | #ifndef KQUICKSYNTAXHIGHLIGHTINGPLUGIN_H |
8 | #define KQUICKSYNTAXHIGHLIGHTINGPLUGIN_H |
9 | |
10 | #include <QQmlEngine> |
11 | #include <QQmlExtensionPlugin> |
12 | |
13 | class KQuickSyntaxHighlightingPlugin : public QQmlExtensionPlugin |
14 | { |
15 | Q_OBJECT |
16 | Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QQmlExtensionInterface" ) |
17 | |
18 | public: |
19 | void registerTypes(const char *uri) override; |
20 | }; |
21 | |
22 | #endif // KQUICKSYNTAXHIGHLIGHTINGPLUGIN_H |
23 | |