1 #ifndef HIGHLIGHTER_H
2 #define HIGHLIGHTER_H
3 
4 #include <QSyntaxHighlighter>
5 
6 class Highlighter : public QSyntaxHighlighter
7 {
8 public:
9 	Highlighter(QTextDocument *parent = 0);
10 protected:
11 	void highlightBlock(const QString &text);
12 };
13 
14 #endif // HIGHLIGHTER_H
15