From 5a2da5767e796bcfdaf5ebf3b80b93c57d31d0aa Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 16 Nov 2015 11:43:19 +0200 Subject: Support specifying documentation variables on command line --- cli/options.ixx | 66 +++++++++++++++++++++++++++++++-------------------------- 1 file changed, 36 insertions(+), 30 deletions(-) (limited to 'cli/options.ixx') diff --git a/cli/options.ixx b/cli/options.ixx index c2b9a80..b146a60 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -264,12 +264,42 @@ suppress_inline () const } inline const std::string& options:: +cli_namespace () const +{ + return this->cli_namespace_; +} + +inline const std::string& options:: ostream_type () const { return this->ostream_type_; } inline const bool& options:: +generate_cxx () const +{ + return this->generate_cxx_; +} + +inline const bool& options:: +generate_man () const +{ + return this->generate_man_; +} + +inline const bool& options:: +generate_html () const +{ + return this->generate_html_; +} + +inline const bool& options:: +stdout_ () const +{ + return this->stdout__; +} + +inline const bool& options:: suppress_undocumented () const { return this->suppress_undocumented_; @@ -305,28 +335,16 @@ exclude_base () const return this->exclude_base_; } -inline const std::string& options:: -cli_namespace () const -{ - return this->cli_namespace_; -} - -inline const bool& options:: -generate_cxx () const -{ - return this->generate_cxx_; -} - -inline const bool& options:: -generate_man () const +inline const std::vector& options:: +class_ () const { - return this->generate_man_; + return this->class__; } -inline const bool& options:: -generate_html () const +inline const std::map& options:: +docvar () const { - return this->generate_html_; + return this->docvar_; } inline const std::vector& options:: @@ -449,18 +467,6 @@ html_epilogue_file () const return this->html_epilogue_file_; } -inline const std::vector& options:: -class_ () const -{ - return this->class__; -} - -inline const bool& options:: -stdout_ () const -{ - return this->stdout__; -} - inline const std::string& options:: hxx_suffix () const { -- cgit v1.1