/* ------------------------------------------- Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved. ------------------------------------------- */ #include namespace Kernel::CF { /***********************************************************************************/ /// @brief Destructor. /***********************************************************************************/ Property::~Property() = default; /***********************************************************************************/ /// @brief Constructor. /***********************************************************************************/ Property::Property() = default; /***********************************************************************************/ /// @brief Check if property's name equals to name. /// @param name string to check. /***********************************************************************************/ Bool Property::StringEquals(BasicKString<>& name) { return this->fName && this->fName == name; } /***********************************************************************************/ /// @brief Gets the key (name) of property. /***********************************************************************************/ BasicKString<>& Property::GetKey() { return this->fName; } /***********************************************************************************/ /// @brief Gets the value of the property. /***********************************************************************************/ PropertyId& Property::GetValue() { return fValue; } } // namespace Kernel::CF