blob: 084616a4d0b04567e3caf468ee521aeda17dde30 (
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 Web Services Co.
------------------------------------------- */
#include <CFKit/Property.h>
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
|