mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
8 lines
251 B
C++
8 lines
251 B
C++
class LogSyntax : public EditorSyntax {
|
|
public:
|
|
virtual void Highlight(const wchar *s, const wchar *end, HighlightOutput& hls,
|
|
CodeEditor *editor, int line, int pos);
|
|
|
|
private:
|
|
HighlightOutput *hout;
|
|
};
|