cpp-common/bt2: make `bt2::BorrowedObject::LibObj` public
[babeltrace.git] / src / cpp-common / bt2 / clock-snapshot.hpp
index 643a229e1cdb3730bd4e04778c05e2b4b80f6876..38ea940b56adcfa4652d0bbfa1b632ac9d099b7c 100644 (file)
@@ -8,29 +8,26 @@
 #define BABELTRACE_CPP_COMMON_BT2_CLOCK_SNAPSHOT_HPP
 
 #include <cstdint>
+
 #include <babeltrace2/babeltrace.h>
 
-#include "internal/borrowed-obj.hpp"
+#include "borrowed-object.hpp"
+#include "clock-class.hpp"
 #include "exc.hpp"
 
 namespace bt2 {
 
-class ConstClockSnapshot final : public internal::BorrowedObj<const bt_clock_snapshot>
+class ConstClockSnapshot final : public BorrowedObject<const bt_clock_snapshot>
 {
 public:
-    explicit ConstClockSnapshot(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObj {libObjPtr}
-    {
-    }
-
-    ConstClockSnapshot(const ConstClockSnapshot& clkSnapshot) noexcept :
-        _ThisBorrowedObj {clkSnapshot}
+    explicit ConstClockSnapshot(const LibObjPtr libObjPtr) noexcept :
+        _ThisBorrowedObject {libObjPtr}
     {
     }
 
-    ConstClockSnapshot& operator=(const ConstClockSnapshot& clkSnapshot) noexcept
+    ConstClockClass clockClass() const noexcept
     {
-        _ThisBorrowedObj::operator=(clkSnapshot);
-        return *this;
+        return ConstClockClass {bt_clock_snapshot_borrow_clock_class_const(this->libObjPtr())};
     }
 
     std::uint64_t value() const noexcept
This page took 0.024078 seconds and 4 git commands to generate.