/* ------------------------------------------- Copyright EL Mahrouss Logic. ------------------------------------------- */ #include namespace CFKit { Property::~Property() = default; Bool Property::StringEquals(KString& name) { return this->fName && this->fName == name; } KString& Property::GetKey() { return this->fName; } PropertyId& Property::GetValue() { return fAction; } } // namespace CFKit