summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/NetworkKit/MAC.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/NetworkKit/MAC.hxx')
-rw-r--r--dev/Kernel/NetworkKit/MAC.hxx29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev/Kernel/NetworkKit/MAC.hxx b/dev/Kernel/NetworkKit/MAC.hxx
deleted file mode 100644
index 8a7b141e..00000000
--- a/dev/Kernel/NetworkKit/MAC.hxx
+++ /dev/null
@@ -1,29 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-
-#pragma once
-
-#include <NewKit/Array.hxx>
-#include <NewKit/Defines.hxx>
-#include <NewKit/String.hxx>
-
-namespace Kernel
-{
- class MacAddressGetter;
-
- /// \brief This retrieves the MAC address of the device.
- /// \note Listens for the current NIC.
- class MacAddressGetter final
- {
- public:
- explicit MacAddressGetter() = default;
-
- public:
- StringView& AsString();
- Array<WideChar, 12>& AsBytes();
- };
-
-} // namespace Kernel