summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NeKit/Ref.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-25 03:07:52 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-25 03:07:52 +0100
commit0e05e9fd34bd036e9043f20939c53edf967465ce (patch)
tree36e3e6b84534a82c53605a19134e9ab772c11c65 /src/kernel/NeKit/Ref.h
parent480ccd897d21823af6128f0e3d8d8cdbf653dd0f (diff)
feat: CF: Add alias for CFDictionary (CFDict).v0.1.3
fix: kernel: CodeMgr improvements and fixes. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/NeKit/Ref.h')
-rw-r--r--src/kernel/NeKit/Ref.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/kernel/NeKit/Ref.h b/src/kernel/NeKit/Ref.h
index 2c669611..42e6d4ce 100644
--- a/src/kernel/NeKit/Ref.h
+++ b/src/kernel/NeKit/Ref.h
@@ -13,9 +13,8 @@
#include <NeKit/Vettable.h>
namespace Kernel {
-/// =========================================================== ///
-/// @brief Reference wrapper class. ///
-/// =========================================================== ///
+
+/// @brief Reference wrapper class.
template <typename T>
class Ref final {
public:
@@ -67,6 +66,7 @@ class Ref final {
Type fClass;
};
+/// @brief Non Nullable Reference class.
template <typename T>
class NonNullRef final {
public:
@@ -93,6 +93,7 @@ class NonNullRef final {
using RefAny = Ref<Any>;
using NonNullRefAny = NonNullRef<Any>;
+
} // namespace Kernel
#endif // ifndef _NEKIT_REF_H_