From 813e4744038ec3a1ca8095111074c1cb2a824d83 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 19 Nov 2015 14:53:52 +0200 Subject: Implement entire page usage generation --- cli/options.ixx | 240 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 240 insertions(+) (limited to 'cli/options.ixx') diff --git a/cli/options.ixx b/cli/options.ixx index c4a3220..447fe18 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -221,12 +221,24 @@ include_path () const return this->include_path_; } +inline bool options:: +include_path_specified () const +{ + return this->include_path_specified_; +} + inline const std::string& options:: output_dir () const { return this->output_dir_; } +inline bool options:: +output_dir_specified () const +{ + return this->output_dir_specified_; +} + inline const bool& options:: generate_modifier () const { @@ -269,12 +281,24 @@ cli_namespace () const return this->cli_namespace_; } +inline bool options:: +cli_namespace_specified () const +{ + return this->cli_namespace_specified_; +} + inline const std::string& options:: ostream_type () const { return this->ostream_type_; } +inline bool options:: +ostream_type_specified () const +{ + return this->ostream_type_specified_; +} + inline const bool& options:: generate_cxx () const { @@ -323,12 +347,30 @@ short_usage () const return this->short_usage_; } +inline const std::string& options:: +page_usage () const +{ + return this->page_usage_; +} + +inline bool options:: +page_usage_specified () const +{ + return this->page_usage_specified_; +} + inline const std::size_t& options:: option_length () const { return this->option_length_; } +inline bool options:: +option_length_specified () const +{ + return this->option_length_specified_; +} + inline const bool& options:: ansi_color () const { @@ -347,174 +389,348 @@ class_ () const return this->class__; } +inline bool options:: +class__specified () const +{ + return this->class__specified_; +} + inline const std::map& options:: docvar () const { return this->docvar_; } +inline bool options:: +docvar_specified () const +{ + return this->docvar_specified_; +} + inline const std::vector& options:: hxx_prologue () const { return this->hxx_prologue_; } +inline bool options:: +hxx_prologue_specified () const +{ + return this->hxx_prologue_specified_; +} + inline const std::vector& options:: ixx_prologue () const { return this->ixx_prologue_; } +inline bool options:: +ixx_prologue_specified () const +{ + return this->ixx_prologue_specified_; +} + inline const std::vector& options:: cxx_prologue () const { return this->cxx_prologue_; } +inline bool options:: +cxx_prologue_specified () const +{ + return this->cxx_prologue_specified_; +} + inline const std::vector& options:: man_prologue () const { return this->man_prologue_; } +inline bool options:: +man_prologue_specified () const +{ + return this->man_prologue_specified_; +} + inline const std::vector& options:: html_prologue () const { return this->html_prologue_; } +inline bool options:: +html_prologue_specified () const +{ + return this->html_prologue_specified_; +} + inline const std::vector& options:: hxx_epilogue () const { return this->hxx_epilogue_; } +inline bool options:: +hxx_epilogue_specified () const +{ + return this->hxx_epilogue_specified_; +} + inline const std::vector& options:: ixx_epilogue () const { return this->ixx_epilogue_; } +inline bool options:: +ixx_epilogue_specified () const +{ + return this->ixx_epilogue_specified_; +} + inline const std::vector& options:: cxx_epilogue () const { return this->cxx_epilogue_; } +inline bool options:: +cxx_epilogue_specified () const +{ + return this->cxx_epilogue_specified_; +} + inline const std::vector& options:: man_epilogue () const { return this->man_epilogue_; } +inline bool options:: +man_epilogue_specified () const +{ + return this->man_epilogue_specified_; +} + inline const std::vector& options:: html_epilogue () const { return this->html_epilogue_; } +inline bool options:: +html_epilogue_specified () const +{ + return this->html_epilogue_specified_; +} + inline const std::string& options:: hxx_prologue_file () const { return this->hxx_prologue_file_; } +inline bool options:: +hxx_prologue_file_specified () const +{ + return this->hxx_prologue_file_specified_; +} + inline const std::string& options:: ixx_prologue_file () const { return this->ixx_prologue_file_; } +inline bool options:: +ixx_prologue_file_specified () const +{ + return this->ixx_prologue_file_specified_; +} + inline const std::string& options:: cxx_prologue_file () const { return this->cxx_prologue_file_; } +inline bool options:: +cxx_prologue_file_specified () const +{ + return this->cxx_prologue_file_specified_; +} + inline const std::string& options:: man_prologue_file () const { return this->man_prologue_file_; } +inline bool options:: +man_prologue_file_specified () const +{ + return this->man_prologue_file_specified_; +} + inline const std::string& options:: html_prologue_file () const { return this->html_prologue_file_; } +inline bool options:: +html_prologue_file_specified () const +{ + return this->html_prologue_file_specified_; +} + inline const std::string& options:: hxx_epilogue_file () const { return this->hxx_epilogue_file_; } +inline bool options:: +hxx_epilogue_file_specified () const +{ + return this->hxx_epilogue_file_specified_; +} + inline const std::string& options:: ixx_epilogue_file () const { return this->ixx_epilogue_file_; } +inline bool options:: +ixx_epilogue_file_specified () const +{ + return this->ixx_epilogue_file_specified_; +} + inline const std::string& options:: cxx_epilogue_file () const { return this->cxx_epilogue_file_; } +inline bool options:: +cxx_epilogue_file_specified () const +{ + return this->cxx_epilogue_file_specified_; +} + inline const std::string& options:: man_epilogue_file () const { return this->man_epilogue_file_; } +inline bool options:: +man_epilogue_file_specified () const +{ + return this->man_epilogue_file_specified_; +} + inline const std::string& options:: html_epilogue_file () const { return this->html_epilogue_file_; } +inline bool options:: +html_epilogue_file_specified () const +{ + return this->html_epilogue_file_specified_; +} + inline const std::string& options:: hxx_suffix () const { return this->hxx_suffix_; } +inline bool options:: +hxx_suffix_specified () const +{ + return this->hxx_suffix_specified_; +} + inline const std::string& options:: ixx_suffix () const { return this->ixx_suffix_; } +inline bool options:: +ixx_suffix_specified () const +{ + return this->ixx_suffix_specified_; +} + inline const std::string& options:: cxx_suffix () const { return this->cxx_suffix_; } +inline bool options:: +cxx_suffix_specified () const +{ + return this->cxx_suffix_specified_; +} + inline const std::string& options:: man_suffix () const { return this->man_suffix_; } +inline bool options:: +man_suffix_specified () const +{ + return this->man_suffix_specified_; +} + inline const std::string& options:: html_suffix () const { return this->html_suffix_; } +inline bool options:: +html_suffix_specified () const +{ + return this->html_suffix_specified_; +} + inline const std::string& options:: option_prefix () const { return this->option_prefix_; } +inline bool options:: +option_prefix_specified () const +{ + return this->option_prefix_specified_; +} + inline const std::string& options:: option_separator () const { return this->option_separator_; } +inline bool options:: +option_separator_specified () const +{ + return this->option_separator_specified_; +} + inline const bool& options:: include_with_brackets () const { @@ -527,24 +743,48 @@ include_prefix () const return this->include_prefix_; } +inline bool options:: +include_prefix_specified () const +{ + return this->include_prefix_specified_; +} + inline const std::string& options:: guard_prefix () const { return this->guard_prefix_; } +inline bool options:: +guard_prefix_specified () const +{ + return this->guard_prefix_specified_; +} + inline const std::map& options:: reserved_name () const { return this->reserved_name_; } +inline bool options:: +reserved_name_specified () const +{ + return this->reserved_name_specified_; +} + inline const std::string& options:: options_file () const { return this->options_file_; } +inline bool options:: +options_file_specified () const +{ + return this->options_file_specified_; +} + // Begin epilogue. // // -- cgit v1.1