File indexing completed on 2024-05-05 04:40:49

0001 /*
0002     SPDX-FileCopyrightText: 2013 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef QMLJSHIGHLIGHTING_H
0008 #define QMLJSHIGHLIGHTING_H
0009 
0010 #include <language/highlighting/codehighlighting.h>
0011 
0012 class QmlJsHighlighting : public KDevelop::CodeHighlighting
0013 {
0014     Q_OBJECT
0015 
0016 public:
0017     explicit QmlJsHighlighting(QObject* parent);
0018     KDevelop::CodeHighlightingInstance* createInstance() const override;
0019 };
0020 
0021 #endif // QMLJSHIGHLIGHTING_H