summaryrefslogtreecommitdiff
path: root/odb/options.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/options.ixx')
-rw-r--r--odb/options.ixx30
1 files changed, 30 insertions, 0 deletions
diff --git a/odb/options.ixx b/odb/options.ixx
index e0317cb..87e81bc 100644
--- a/odb/options.ixx
+++ b/odb/options.ixx
@@ -300,6 +300,36 @@ namespace cli
// options
//
+inline const std::uint64_t& options::
+build2_metadata () const
+{
+ return this->build2_metadata_;
+}
+
+inline std::uint64_t& options::
+build2_metadata ()
+{
+ return this->build2_metadata_;
+}
+
+inline void options::
+build2_metadata(const std::uint64_t& x)
+{
+ this->build2_metadata_ = x;
+}
+
+inline bool options::
+build2_metadata_specified () const
+{
+ return this->build2_metadata_specified_;
+}
+
+inline void options::
+build2_metadata_specified(bool x)
+{
+ this->build2_metadata_specified_ = x;
+}
+
inline const bool& options::
help () const
{