// Copyright 2024-2025, 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 #ifndef NEKIT_TOML_H #define NEKIT_TOML_H #include #include namespace Kernel { /// \brief TOML Object Handle class TOMLObject final { public: explicit TOMLObject() = delete; ~TOMLObject() = default; STATIC TOMLObject kNull; private: Bool fUndefined{YES}; // is this instance undefined? KString fKey; KString fValue; }; } // namespace Kernel #endif