mirror of
https://github.com/MeowLynxSea/ceditor.git
synced 2025-07-09 10:54:37 +00:00
15 lines
220 B
C++
15 lines
220 B
C++
#ifndef SYNTAX_HIGHLIGHTER_H
|
|
#define SYNTAX_HIGHLIGHTER_H
|
|
|
|
#include "Color.h"
|
|
#include "RichText.h"
|
|
#include <string>
|
|
|
|
class SyntaxHighlighter {
|
|
private:
|
|
std::string ruleName;
|
|
|
|
|
|
};
|
|
|
|
#endif // SYNTAX_HIGHLIGHTER_H
|