From 9f995b41e72b25c0c7ffe8e2568e166d86f27bcc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 4 Oct 2009 09:31:37 +0200 Subject: Add --{hxx,ixx,cxx}-suffix options --- cli/options.hxx | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'cli/options.hxx') diff --git a/cli/options.hxx b/cli/options.hxx index cf92229..2594947 100644 --- a/cli/options.hxx +++ b/cli/options.hxx @@ -210,11 +210,20 @@ class options bool const& version () const; + bool const& + suppress_inline () const; + std::string const& output_dir () const; - bool const& - suppress_inline () const; + std::string const& + hxx_suffix () const; + + std::string const& + ixx_suffix () const; + + std::string const& + cxx_suffix () const; private: int @@ -227,8 +236,11 @@ class options public: bool help_; bool version_; - std::string output_dir_; bool suppress_inline_; + std::string output_dir_; + std::string hxx_suffix_; + std::string ixx_suffix_; + std::string cxx_suffix_; }; #include "options.ixx" -- cgit v1.1