summaryrefslogtreecommitdiff
path: root/cli/options.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-03-24 13:00:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-03-24 13:00:05 +0200
commit74fff9901d9529cdde4ed42254aa21afe466ac3a (patch)
treeb95c93bc49e0ff9d9a1d7b26931f473f5e68aff9 /cli/options.ixx
parenta2884d0ae08c4c13998570aa0073b05dec82c543 (diff)
Add --keep-separator option
Diffstat (limited to 'cli/options.ixx')
-rw-r--r--cli/options.ixx20
1 files changed, 20 insertions, 0 deletions
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 <cassert>
+
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_;