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 | fd8ab2d18eb5ce51f3ebfdfd97b9d1f7a0c5d873 (patch) | |
tree | f323f9d912411c44a4b3bc513a49b69e49c7438a /lexlib/LexAccessor.h | |
parent | 3a993f0a5e97435874e06d5496085c4cb7a0d4cb (diff) | |
download | scintilla-mirror-fd8ab2d18eb5ce51f3ebfdfd97b9d1f7a0c5d873.tar.gz |
Backport: Basic implementation helpers for style metadata.
Backport of changeset 6347:69b7471ad62f.
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 064a17581..5e5c9bfe4 100644 --- a/lexlib/LexAccessor.h +++ b/lexlib/LexAccessor.h @@ -197,6 +197,13 @@ public: } }; +struct LexicalClass { + int value; + const char *name; + const char *tags; + const char *description; +}; + #ifdef SCI_NAMESPACE } #endif |