aboutsummaryrefslogtreecommitdiff
path: root/bdep/status-options.ixx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-04-19 21:12:56 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-04-19 21:12:56 +0300
commitf5d27a72c12b8beebf6ac34fe5fc1239b9c7c691 (patch)
tree3a9d336a06bd7b860f65477eb63272834b17f414 /bdep/status-options.ixx
parent168811dcad9900fc1961514da91158f422f3c71e (diff)
Make changes required for CIci
Diffstat (limited to 'bdep/status-options.ixx')
-rw-r--r--bdep/status-options.ixx111
1 files changed, 111 insertions, 0 deletions
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.