From 74fff9901d9529cdde4ed42254aa21afe466ac3a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 24 Mar 2018 13:00:05 +0200 Subject: Add --keep-separator option --- cli/options.ixx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'cli/options.ixx') diff --git a/cli/options.ixx b/cli/options.ixx index d93957e..634e7b7 100644 --- a/cli/options.ixx +++ b/cli/options.ixx @@ -9,6 +9,8 @@ // // End prologue. +#include + namespace cli { // usage_para @@ -2046,6 +2048,24 @@ option_separator_specified(bool x) } inline const bool& options:: +keep_separator () const +{ + return this->keep_separator_; +} + +inline bool& options:: +keep_separator () +{ + return this->keep_separator_; +} + +inline void options:: +keep_separator(const bool& x) +{ + this->keep_separator_ = x; +} + +inline const bool& options:: include_with_brackets () const { return this->include_with_brackets_; -- cgit v1.1