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.ixx | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'cli/options.ixx') diff --git a/cli/options.ixx b/cli/options.ixx index ac93219..9e15c36 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -17,15 +17,33 @@ version () const return version_; } +inline bool const& options:: +suppress_inline () const +{ + return suppress_inline_; +} + inline std::string const& options:: output_dir () const { return output_dir_; } -inline bool const& options:: -suppress_inline () const +inline std::string const& options:: +hxx_suffix () const { - return suppress_inline_; + return hxx_suffix_; +} + +inline std::string const& options:: +ixx_suffix () const +{ + return ixx_suffix_; +} + +inline std::string const& options:: +cxx_suffix () const +{ + return cxx_suffix_; } -- cgit v1.1