diff options
Diffstat (limited to 'NewKernel/Source/Property.cxx')
| -rw-r--r-- | NewKernel/Source/Property.cxx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/NewKernel/Source/Property.cxx b/NewKernel/Source/Property.cxx new file mode 100644 index 00000000..c3d4fe52 --- /dev/null +++ b/NewKernel/Source/Property.cxx @@ -0,0 +1,20 @@ +/* ------------------------------------------- + + Copyright Mahrouss Logic + +------------------------------------------- */ + +#include <CFKit/Property.hpp> + +namespace NewOS +{ + bool Property::StringEquals(StringView& name) + { + return fName && this->fName == name; + } + + const PropertyId& Property::GetPropertyById() + { + return fAction; + } +} // namespace NewOS |
