File indexing completed on 2023-05-30 11:20:06
0001 /* 0002 SPDX-FileCopyrightText: 2010 Milian Wolff 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #ifndef PHP_PHPHIGHLIGHTING_H 0008 #define PHP_PHPHIGHLIGHTING_H 0009 0010 #include <language/highlighting/codehighlighting.h> 0011 0012 0013 namespace Php { 0014 0015 class Highlighting : public KDevelop::CodeHighlighting 0016 { 0017 public: 0018 Highlighting(QObject* parent); 0019 KDevelop::CodeHighlightingInstance* createInstance() const override; 0020 }; 0021 0022 } 0023 0024 #endif // PHP_PHPHIGHLIGHTING_H