summaryrefslogtreecommitdiff
path: root/src/common/memory/unique_ptr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/memory/unique_ptr.hpp')
-rw-r--r--src/common/memory/unique_ptr.hpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/common/memory/unique_ptr.hpp b/src/common/memory/unique_ptr.hpp
new file mode 100644
index 0000000..94c02d0
--- /dev/null
+++ b/src/common/memory/unique_ptr.hpp
@@ -0,0 +1,37 @@
+#pragma once
+
+namespace common
+{
+template <class Target>
+class UniquePtr
+{
+public:
+ explicit UniquePtr() = default;
+ explicit UniquePtr(Target *target);
+
+ // Move constructor
+ UniquePtr(UniquePtr &&unique_ptr) noexcept;
+
+ // Move assignment operator
+ UniquePtr &operator=(UniquePtr &&unique_ptr) noexcept;
+
+ // Disable the copy constructor
+ UniquePtr(const UniquePtr &unique_ptr) = delete;
+
+ // Disable the copy assignment operator
+ UniquePtr &operator=(const UniquePtr &unique_ptr) = delete;
+
+ ~UniquePtr();
+
+ Target operator*() const;
+ Target *operator->() const;
+
+private:
+ Target *_target = nullptr;
+};
+
+template <typename Target, typename... Args>
+UniquePtr<Target> make_unique(Args... args);
+} // namespace common
+
+#include "unique_ptr.tpp"