summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/Property.cxx
blob: 0c5c5fab4f3a8dd5e3ee0a5a0c83b230a6435d49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -------------------------------------------

	Copyright SoftwareLabs

------------------------------------------- */

#include <CFKit/Property.hpp>

namespace NewOS
{
	bool Property::StringEquals(StringView& name)
	{
		return fName && this->fName == name;
	}

	const PropertyId& Property::GetPropertyById()
	{
		return fAction;
	}
} // namespace NewOS