From e220a75053a25fcc1aac8584708bb9d994dd850a Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 29 Feb 2024 22:08:03 +0300 Subject: Make changes required for CI --- bdep/status-options.ixx | 111 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 bdep/status-options.ixx (limited to 'bdep/status-options.ixx') diff --git a/bdep/status-options.ixx b/bdep/status-options.ixx new file mode 100644 index 0000000..8fbafb4 --- /dev/null +++ b/bdep/status-options.ixx @@ -0,0 +1,111 @@ +// -*- C++ -*- +// +// This file was generated by CLI, a command line interface +// compiler for C++. +// + +// Begin prologue. +// +// +// End prologue. + +namespace bdep +{ + // cmd_status_options + // + + inline const bool& cmd_status_options:: + immediate () const + { + return this->immediate_; + } + + inline bool& cmd_status_options:: + immediate () + { + return this->immediate_; + } + + inline void cmd_status_options:: + immediate (const bool& x) + { + this->immediate_ = x; + } + + inline const bool& cmd_status_options:: + recursive () const + { + return this->recursive_; + } + + inline bool& cmd_status_options:: + recursive () + { + return this->recursive_; + } + + inline void cmd_status_options:: + recursive (const bool& x) + { + this->recursive_ = x; + } + + inline const bool& cmd_status_options:: + old_available () const + { + return this->old_available_; + } + + inline bool& cmd_status_options:: + old_available () + { + return this->old_available_; + } + + inline void cmd_status_options:: + old_available (const bool& x) + { + this->old_available_ = x; + } + + inline const bool& cmd_status_options:: + fetch () const + { + return this->fetch_; + } + + inline bool& cmd_status_options:: + fetch () + { + return this->fetch_; + } + + inline void cmd_status_options:: + fetch (const bool& x) + { + this->fetch_ = x; + } + + inline const bool& cmd_status_options:: + fetch_full () const + { + return this->fetch_full_; + } + + inline bool& cmd_status_options:: + fetch_full () + { + return this->fetch_full_; + } + + inline void cmd_status_options:: + fetch_full (const bool& x) + { + this->fetch_full_ = x; + } +} + +// Begin epilogue. +// +// +// End epilogue. -- cgit v1.1