From 8eef1041c8c28a3c4c0528c072a431db2886764b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 11 Jan 2016 10:07:12 +0200 Subject: Add support for --output-{prefix,suffix} options --- cli/options.ixx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'cli/options.ixx') diff --git a/cli/options.ixx b/cli/options.ixx index 1d61ecb..ed07f19 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -686,6 +686,30 @@ html_epilogue_file_specified () const } inline const std::string& options:: +output_prefix () const +{ + return this->output_prefix_; +} + +inline bool options:: +output_prefix_specified () const +{ + return this->output_prefix_specified_; +} + +inline const std::string& options:: +output_suffix () const +{ + return this->output_suffix_; +} + +inline bool options:: +output_suffix_specified () const +{ + return this->output_suffix_specified_; +} + +inline const std::string& options:: hxx_suffix () const { return this->hxx_suffix_; -- cgit v1.1