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.hxx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'cli/options.hxx') diff --git a/cli/options.hxx b/cli/options.hxx index 6171cc0..9794732 100644 --- a/cli/options.hxx +++ b/cli/options.hxx @@ -631,6 +631,18 @@ class options html_epilogue_file_specified () const; const std::string& + output_prefix () const; + + bool + output_prefix_specified () const; + + const std::string& + output_suffix () const; + + bool + output_suffix_specified () const; + + const std::string& hxx_suffix () const; bool @@ -797,6 +809,10 @@ class options bool man_epilogue_file_specified_; std::string html_epilogue_file_; bool html_epilogue_file_specified_; + std::string output_prefix_; + bool output_prefix_specified_; + std::string output_suffix_; + bool output_suffix_specified_; std::string hxx_suffix_; bool hxx_suffix_specified_; std::string ixx_suffix_; -- cgit v1.1