blob: 60bd03dad6d5031d01b5ff38972dc6056c1eaffe (
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.hpp>
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
|