summaryrefslogtreecommitdiff
path: root/cli/options.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-07-27 11:38:53 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-07-27 16:34:32 +0200
commitdca38b27afc25d329fd7a7241095b40e2a1ecae2 (patch)
treec656421398fd818d68f9e07130f96d7eeeaa6490 /cli/options.hxx
parentc5979a2814c9211e0e3c8ae7232ea66f171d54d0 (diff)
Add support for option merging (--generate-merge)
Diffstat (limited to 'cli/options.hxx')
-rw-r--r--cli/options.hxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/cli/options.hxx b/cli/options.hxx
index dce59bd..9f5124f 100644
--- a/cli/options.hxx
+++ b/cli/options.hxx
@@ -500,6 +500,15 @@ class options
generate_parse (const bool&);
const bool&
+ generate_merge () const;
+
+ bool&
+ generate_merge ();
+
+ void
+ generate_merge (const bool&);
+
+ const bool&
generate_description () const;
bool&
@@ -1450,6 +1459,7 @@ class options
bool generate_modifier_;
bool generate_specifier_;
bool generate_parse_;
+ bool generate_merge_;
bool generate_description_;
bool generate_file_scanner_;
bool generate_vector_scanner_;