summaryrefslogtreecommitdiff
path: root/cli/cli/bootstrap/cli/options.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-11-09 13:01:13 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-11-09 13:01:13 +0200
commitcd3758bb328ff425bb06f18c81d3c353b508a336 (patch)
treeed8a85f7c01fa83852bb6d51e4fc2dd2a268b388 /cli/cli/bootstrap/cli/options.ixx
parent9944c0e901d370316fe55fb845ad1c3c6721038d (diff)
Add --ascii-tree for translating UTF-8 tree(1) output to ASCII
Diffstat (limited to 'cli/cli/bootstrap/cli/options.ixx')
-rw-r--r--cli/cli/bootstrap/cli/options.ixx18
1 files changed, 18 insertions, 0 deletions
diff --git a/cli/cli/bootstrap/cli/options.ixx b/cli/cli/bootstrap/cli/options.ixx
index ee4cbdb..8c22d51 100644
--- a/cli/cli/bootstrap/cli/options.ixx
+++ b/cli/cli/bootstrap/cli/options.ixx
@@ -895,6 +895,24 @@ option_length_specified (bool x)
}
inline const bool& options::
+ascii_tree () const
+{
+ return this->ascii_tree_;
+}
+
+inline bool& options::
+ascii_tree ()
+{
+ return this->ascii_tree_;
+}
+
+inline void options::
+ascii_tree (const bool& x)
+{
+ this->ascii_tree_ = x;
+}
+
+inline const bool& options::
ansi_color () const
{
return this->ansi_color_;