summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/Sources/Property.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/Sources/Property.cxx')
-rw-r--r--dev/Kernel/Sources/Property.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/dev/Kernel/Sources/Property.cxx b/dev/Kernel/Sources/Property.cxx
deleted file mode 100644
index 04b4367e..00000000
--- a/dev/Kernel/Sources/Property.cxx
+++ /dev/null
@@ -1,27 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-
-#include <CFKit/Property.hxx>
-
-namespace Kernel
-{
- Property::~Property() = default;
-
- bool Property::StringEquals(StringView& name)
- {
- return this->fName && this->fName == name;
- }
-
- StringView& Property::GetKey()
- {
- return this->fName;
- }
-
- PropertyId& Property::GetValue()
- {
- return fAction;
- }
-} // namespace Kernel