blob: 2eead6df8dd171e1abef3c24d35fbfffa30f3846 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef HIGHLIGHTER_H_
#define HIGHLIGHTER_H_
#include <QSyntaxHighlighter>
class Highlighter : public QSyntaxHighlighter
{
public:
Highlighter(QTextDocument *parent);
void highlightBlock(const QString &text);
};
#endif
|