From b64fae536f4f7043e03b12d2e6df8183c8a0f8ad Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 26 Feb 2024 11:41:58 +0300 Subject: Make changes required for CI --- bbot/worker/worker-options.ixx | 123 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 bbot/worker/worker-options.ixx (limited to 'bbot/worker/worker-options.ixx') diff --git a/bbot/worker/worker-options.ixx b/bbot/worker/worker-options.ixx new file mode 100644 index 0000000..bc5b21d --- /dev/null +++ b/bbot/worker/worker-options.ixx @@ -0,0 +1,123 @@ +// -*- C++ -*- +// +// This file was generated by CLI, a command line interface +// compiler for C++. +// + +// Begin prologue. +// +// +// End prologue. + +namespace bbot +{ + // worker_options + // + + inline const bool& worker_options:: + help () const + { + return this->help_; + } + + inline const bool& worker_options:: + version () const + { + return this->version_; + } + + inline const uint16_t& worker_options:: + verbose () const + { + return this->verbose_; + } + + inline bool worker_options:: + verbose_specified () const + { + return this->verbose_specified_; + } + + inline const bool& worker_options:: + bootstrap () const + { + return this->bootstrap_; + } + + inline const bool& worker_options:: + startup () const + { + return this->startup_; + } + + inline const bool& worker_options:: + systemd_daemon () const + { + return this->systemd_daemon_; + } + + inline const dir_path& worker_options:: + build () const + { + return this->build_; + } + + inline bool worker_options:: + build_specified () const + { + return this->build_specified_; + } + + inline const dir_path& worker_options:: + environments () const + { + return this->environments_; + } + + inline bool worker_options:: + environments_specified () const + { + return this->environments_specified_; + } + + inline const path& worker_options:: + env_script () const + { + return this->env_script_; + } + + inline bool worker_options:: + env_script_specified () const + { + return this->env_script_specified_; + } + + inline const string& worker_options:: + env_target () const + { + return this->env_target_; + } + + inline bool worker_options:: + env_target_specified () const + { + return this->env_target_specified_; + } + + inline const string& worker_options:: + tftp_host () const + { + return this->tftp_host_; + } + + inline bool worker_options:: + tftp_host_specified () const + { + return this->tftp_host_specified_; + } +} + +// Begin epilogue. +// +// +// End epilogue. -- cgit v1.1