diff options
Diffstat (limited to 'Kernel/Source/Property.cxx')
| -rw-r--r-- | Kernel/Source/Property.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Kernel/Source/Property.cxx b/Kernel/Source/Property.cxx new file mode 100644 index 00000000..ab4f7bf5 --- /dev/null +++ b/Kernel/Source/Property.cxx @@ -0,0 +1,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 |
