diff options
author | Neil <nyamatongwe@gmail.com> | 2017-06-22 18:04:29 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-06-22 18:04:29 +1000 |
commit | 35eed469ff0228dcfd205939d2b98b52da36a5b5 (patch) | |
tree | 3de7172292e6bc74822fd4833aa283ada04547dd /lexlib/LexAccessor.h | |
parent | cac2f69f221ca31545681968fc746dc590f060bd (diff) | |
download | scintilla-mirror-35eed469ff0228dcfd205939d2b98b52da36a5b5.tar.gz |
Basic implementation helpers for style metadata.
Diffstat (limited to 'lexlib/LexAccessor.h')
-rw-r--r-- | lexlib/LexAccessor.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lexlib/LexAccessor.h b/lexlib/LexAccessor.h index 0cf6e8ce0..9f786132b 100644 --- a/lexlib/LexAccessor.h +++ b/lexlib/LexAccessor.h @@ -184,6 +184,13 @@ public: } }; +struct LexicalClass { + int value; + const char *name; + const char *tags; + const char *description; +}; + #ifdef SCI_NAMESPACE } #endif |