summaryrefslogtreecommitdiff
path: root/cli/options.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-06-02 17:22:12 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-06-02 17:22:12 +0200
commited60746355044dd39acd82b8f42c4d9886914567 (patch)
treea958825cb9bca8960eafb41c373d91e22ca9e4ed /cli/options.hxx
parent62166bfe7031522bd851eb5d7047a19182e24a45 (diff)
Implement generation of specifier functions (--generate-specifier)
These functions determine whether the option was specified on the command line. New test: specifier.
Diffstat (limited to 'cli/options.hxx')
-rw-r--r--cli/options.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/options.hxx b/cli/options.hxx
index 24af0f2..e17a7d3 100644
--- a/cli/options.hxx
+++ b/cli/options.hxx
@@ -312,6 +312,9 @@ class options
generate_modifier () const;
const bool&
+ generate_specifier () const;
+
+ const bool&
generate_file_scanner () const;
const bool&
@@ -405,6 +408,7 @@ class options
bool version_;
std::string output_dir_;
bool generate_modifier_;
+ bool generate_specifier_;
bool generate_file_scanner_;
bool suppress_inline_;
bool suppress_usage_;