From 577a38358b295379511ea8bb130ef1dcb7157c0f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 8 Nov 2009 21:28:46 +0200 Subject: Implement HTML pages generation --- cli/options.hxx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'cli/options.hxx') diff --git a/cli/options.hxx b/cli/options.hxx index 6f1210f..96f50e6 100644 --- a/cli/options.hxx +++ b/cli/options.hxx @@ -189,6 +189,18 @@ class options const bool& suppress_usage () const; + const bool& + generate_cxx () const; + + const bool& + generate_man () const; + + const bool& + generate_html () const; + + const bool& + stdout () const; + const std::size_t& option_length () const; @@ -202,6 +214,9 @@ class options cxx_suffix () const; const std::string& + html_suffix () const; + + const std::string& option_prefix () const; const std::string& @@ -238,10 +253,15 @@ class options std::string output_dir_; bool suppress_inline_; bool suppress_usage_; + bool generate_cxx_; + bool generate_man_; + bool generate_html_; + bool stdout_; std::size_t option_length_; std::string hxx_suffix_; std::string ixx_suffix_; std::string cxx_suffix_; + std::string html_suffix_; std::string option_prefix_; std::string option_separator_; bool include_with_brackets_; -- cgit v1.1