From 5a01a260c368d3045f0870cc09620a772027e911 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 18 Jan 2016 12:50:12 +0200 Subject: Initial support for plain text documentation (--generate-txt) Support for option documentation generation is still a TODO. --- cli/options.ixx | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) (limited to 'cli/options.ixx') diff --git a/cli/options.ixx b/cli/options.ixx index ed07f19..618d15f 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -338,6 +338,12 @@ generate_html () const } inline const bool& options:: +generate_txt () const +{ + return this->generate_txt_; +} + +inline const bool& options:: stdout_ () const { return this->stdout__; @@ -506,6 +512,18 @@ html_prologue_specified () const } inline const std::vector& options:: +txt_prologue () const +{ + return this->txt_prologue_; +} + +inline bool options:: +txt_prologue_specified () const +{ + return this->txt_prologue_specified_; +} + +inline const std::vector& options:: hxx_epilogue () const { return this->hxx_epilogue_; @@ -565,6 +583,18 @@ html_epilogue_specified () const return this->html_epilogue_specified_; } +inline const std::vector& options:: +txt_epilogue () const +{ + return this->txt_epilogue_; +} + +inline bool options:: +txt_epilogue_specified () const +{ + return this->txt_epilogue_specified_; +} + inline const std::string& options:: hxx_prologue_file () const { @@ -626,6 +656,18 @@ html_prologue_file_specified () const } inline const std::string& options:: +txt_prologue_file () const +{ + return this->txt_prologue_file_; +} + +inline bool options:: +txt_prologue_file_specified () const +{ + return this->txt_prologue_file_specified_; +} + +inline const std::string& options:: hxx_epilogue_file () const { return this->hxx_epilogue_file_; @@ -686,6 +728,18 @@ html_epilogue_file_specified () const } inline const std::string& options:: +txt_epilogue_file () const +{ + return this->txt_epilogue_file_; +} + +inline bool options:: +txt_epilogue_file_specified () const +{ + return this->txt_epilogue_file_specified_; +} + +inline const std::string& options:: output_prefix () const { return this->output_prefix_; @@ -770,6 +824,18 @@ html_suffix_specified () const } inline const std::string& options:: +txt_suffix () const +{ + return this->txt_suffix_; +} + +inline bool options:: +txt_suffix_specified () const +{ + return this->txt_suffix_specified_; +} + +inline const std::string& options:: option_prefix () const { return this->option_prefix_; -- cgit v1.1