From f5d27a72c12b8beebf6ac34fe5fc1239b9c7c691 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 19 Apr 2024 21:12:56 +0300 Subject: Make changes required for CI --- bdep/config-options.ixx | 186 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 186 insertions(+) create mode 100644 bdep/config-options.ixx (limited to 'bdep/config-options.ixx') diff --git a/bdep/config-options.ixx b/bdep/config-options.ixx new file mode 100644 index 0000000..b0b615d --- /dev/null +++ b/bdep/config-options.ixx @@ -0,0 +1,186 @@ +// -*- C++ -*- +// +// This file was generated by CLI, a command line interface +// compiler for C++. +// + +// Begin prologue. +// +// +// End prologue. + +namespace bdep +{ + // cmd_config_subcommands + // + + inline const bool& cmd_config_subcommands:: + add () const + { + return this->add_; + } + + inline bool& cmd_config_subcommands:: + add () + { + return this->add_; + } + + inline void cmd_config_subcommands:: + add (const bool& x) + { + this->add_ = x; + } + + inline const bool& cmd_config_subcommands:: + create () const + { + return this->create_; + } + + inline bool& cmd_config_subcommands:: + create () + { + return this->create_; + } + + inline void cmd_config_subcommands:: + create (const bool& x) + { + this->create_ = x; + } + + inline const bool& cmd_config_subcommands:: + link () const + { + return this->link_; + } + + inline bool& cmd_config_subcommands:: + link () + { + return this->link_; + } + + inline void cmd_config_subcommands:: + link (const bool& x) + { + this->link_ = x; + } + + inline const bool& cmd_config_subcommands:: + unlink () const + { + return this->unlink_; + } + + inline bool& cmd_config_subcommands:: + unlink () + { + return this->unlink_; + } + + inline void cmd_config_subcommands:: + unlink (const bool& x) + { + this->unlink_ = x; + } + + inline const bool& cmd_config_subcommands:: + list () const + { + return this->list_; + } + + inline bool& cmd_config_subcommands:: + list () + { + return this->list_; + } + + inline void cmd_config_subcommands:: + list (const bool& x) + { + this->list_ = x; + } + + inline const bool& cmd_config_subcommands:: + move () const + { + return this->move_; + } + + inline bool& cmd_config_subcommands:: + move () + { + return this->move_; + } + + inline void cmd_config_subcommands:: + move (const bool& x) + { + this->move_ = x; + } + + inline const bool& cmd_config_subcommands:: + rename () const + { + return this->rename_; + } + + inline bool& cmd_config_subcommands:: + rename () + { + return this->rename_; + } + + inline void cmd_config_subcommands:: + rename (const bool& x) + { + this->rename_ = x; + } + + inline const bool& cmd_config_subcommands:: + remove () const + { + return this->remove_; + } + + inline bool& cmd_config_subcommands:: + remove () + { + return this->remove_; + } + + inline void cmd_config_subcommands:: + remove (const bool& x) + { + this->remove_ = x; + } + + inline const bool& cmd_config_subcommands:: + set () const + { + return this->set_; + } + + inline bool& cmd_config_subcommands:: + set () + { + return this->set_; + } + + inline void cmd_config_subcommands:: + set (const bool& x) + { + this->set_ = x; + } + + // cmd_config_options + // +} + +// Begin epilogue. +// +// +// End epilogue. -- cgit v1.1