cpp-common/bt2: rename `bt2::BorrowedObj` -> `bt2::BorrowedObject`
[babeltrace.git] / src / cpp-common / bt2 / clock-snapshot.hpp
index acd399b1eebd08ff8b04afbcc1cb62d72d1a418d..ed30eaf5e4d9f8d51721f96bdad37dd71f74b395 100644 (file)
 
 #include <babeltrace2/babeltrace.h>
 
-#include "borrowed-obj.hpp"
+#include "borrowed-object.hpp"
 #include "exc.hpp"
 
 namespace bt2 {
 
-class ConstClockSnapshot final : public BorrowedObj<const bt_clock_snapshot>
+class ConstClockSnapshot final : public BorrowedObject<const bt_clock_snapshot>
 {
 public:
-    explicit ConstClockSnapshot(const _LibObjPtr libObjPtr) noexcept : _ThisBorrowedObj {libObjPtr}
+    explicit ConstClockSnapshot(const _LibObjPtr libObjPtr) noexcept :
+        _ThisBorrowedObject {libObjPtr}
     {
     }
 
     ConstClockSnapshot(const ConstClockSnapshot& clkSnapshot) noexcept :
-        _ThisBorrowedObj {clkSnapshot}
+        _ThisBorrowedObject {clkSnapshot}
     {
     }
 
     ConstClockSnapshot& operator=(const ConstClockSnapshot& clkSnapshot) noexcept
     {
-        _ThisBorrowedObj::operator=(clkSnapshot);
+        _ThisBorrowedObject::operator=(clkSnapshot);
         return *this;
     }
 
This page took 0.023535 seconds and 4 git commands to generate.