diff options
| author | 2021-05-15 06:57:22 +0200 | |
|---|---|---|
| committer | 2021-05-15 06:57:22 +0200 | |
| commit | 03a443cb5f4269aa9c6a9c3dc2efcfc30b913703 (patch) | |
| tree | eec10b5f0c205f5a6d56ac35fdd8657f125e1338 /include | |
| parent | f7782a8dffe60e2ee5698bc54443dcb54e8f9a42 (diff) | |
| download | OneRoll-03a443cb5f4269aa9c6a9c3dc2efcfc30b913703.tar.gz OneRoll-03a443cb5f4269aa9c6a9c3dc2efcfc30b913703.zip | |
Add feature about no comma for list operator.
Diffstat (limited to 'include')
| -rw-r--r-- | include/parsingtoolbox.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/parsingtoolbox.h b/include/parsingtoolbox.h index 595e5e1..89081ed 100644 --- a/include/parsingtoolbox.h +++ b/include/parsingtoolbox.h @@ -82,9 +82,12 @@ class ParsingToolBox public: enum LIST_OPERATOR { - NONE, - UNIQUE + NONE= 0x00, + UNIQUE= 0x01, + NOCOMMA= 0x02, + UniqueAndNoComma= 0x03 }; + enum Function { REPEAT |