summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/Property.cxx
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlal@softwarelabs.com>2024-06-15 13:49:07 +0200
committerAmlal EL Mahrouss <amlal@softwarelabs.com>2024-06-15 13:49:07 +0200
commitf05b598a1c1a8ca4f1bf0acca078f9c9e3c07991 (patch)
tree38c9175fe1d297c332fe0d8ee76fb4a28c4bde4a /Kernel/Sources/Property.cxx
parent999877265276c8a5ae78eb01c92d1d9928a13576 (diff)
kernel: include assembly files as well in project.
Signed-off-by: Amlal EL Mahrouss <amlal@softwarelabs.com>
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;