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.ixx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'cli/options.ixx') 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_; -- cgit v1.1