File: phphighlighting.h

package info (click to toggle)
kdevelop-php 24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,616 kB
  • sloc: cpp: 20,858; php: 15,243; xml: 136; sh: 58; makefile: 10
file content (24 lines) | stat: -rw-r--r-- 444 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
    SPDX-FileCopyrightText: 2010 Milian Wolff

    SPDX-License-Identifier: GPL-2.0-or-later
*/

#ifndef PHP_PHPHIGHLIGHTING_H
#define PHP_PHPHIGHLIGHTING_H

#include <language/highlighting/codehighlighting.h>


namespace Php {

class Highlighting : public KDevelop::CodeHighlighting
{
public:
    Highlighting(QObject* parent);
    KDevelop::CodeHighlightingInstance* createInstance() const override;
};

}

#endif // PHP_PHPHIGHLIGHTING_H