diff options
Diffstat (limited to 'cli/options.ixx')
-rw-r--r-- | cli/options.ixx | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cli/options.ixx b/cli/options.ixx index 77ec790..6cf5899 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -118,6 +118,30 @@ suppress_usage () const return suppress_usage_; } +inline const bool& options:: +generate_cxx () const +{ + return generate_cxx_; +} + +inline const bool& options:: +generate_man () const +{ + return generate_man_; +} + +inline const bool& options:: +generate_html () const +{ + return generate_html_; +} + +inline const bool& options:: +stdout () const +{ + return stdout_; +} + inline const std::size_t& options:: option_length () const { @@ -143,6 +167,12 @@ cxx_suffix () const } inline const std::string& options:: +html_suffix () const +{ + return html_suffix_; +} + +inline const std::string& options:: option_prefix () const { return option_prefix_; |