summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/NeKit/TOML.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/NeKit/TOML.h')
-rw-r--r--src/kernel/NeKit/TOML.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/kernel/NeKit/TOML.h b/src/kernel/NeKit/TOML.h
index 62602837..1cdf1ba8 100644
--- a/src/kernel/NeKit/TOML.h
+++ b/src/kernel/NeKit/TOML.h
@@ -1,4 +1,4 @@
-// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (see LICENSE file)
// Official repository: https://github.com/nekernel-org/nekernel
@@ -9,6 +9,7 @@
#include <NeKit/KString.h>
namespace Kernel {
+
/// \brief TOML Object Handle
class TOMLObject final {
public:
@@ -18,10 +19,11 @@ class TOMLObject final {
STATIC TOMLObject kNull;
private:
- Bool fUndefined{YES}; // is this instance undefined?
- KString fKey;
- KString fValue;
+ Bool mUndefined{YES}; // is this instance undefined?
+ KString mKey;
+ KString mValue;
};
+
} // namespace Kernel
-#endif \ No newline at end of file
+#endif