summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/Property.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Sources/Property.cxx')
-rw-r--r--Kernel/Sources/Property.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Kernel/Sources/Property.cxx b/Kernel/Sources/Property.cxx
index dca34429..b58de469 100644
--- a/Kernel/Sources/Property.cxx
+++ b/Kernel/Sources/Property.cxx
@@ -8,6 +8,14 @@
namespace NewOS
{
+ Property::Property(const StringView& sw)
+ : fName(sw)
+ {
+ kcout << "Property: created: " << sw.CData() << endl;
+ }
+
+ Property::~Property() = default;
+
bool Property::StringEquals(StringView& name)
{
return fName && this->fName == name;