blob: 04b4367e6ab4a508a4992d614cb54a92f655d052 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* -------------------------------------------
Copyright ZKA Technologies.
------------------------------------------- */
#include <CFKit/Property.hxx>
namespace Kernel
{
Property::~Property() = default;
bool Property::StringEquals(StringView& name)
{
return this->fName && this->fName == name;
}
StringView& Property::GetKey()
{
return this->fName;
}
PropertyId& Property::GetValue()
{
return fAction;
}
} // namespace Kernel
|